ARC061 C - たくさんの数式

Calendar Clock iconCalendar Clock icon

atcoder

目次

# 問題

https://atcoder.jp/contests/arc061/tasks/arc061_a

数字列が与えられるので、その任意の位置に任意の数だけ++を入れで出来るすべての数式の答えの和を求める問題.

# 解説

数字列の長さSS1010と小さいので、bit全探索で計算ステップ数は2102^{10}と十分間に合う.
数字列を再帰的に先頭一文字と残りに分割していき、その合計を求める.
数え上げの漏れだけないように注意.

# 計算量

数字列の長さをSSとすると、

O(2S)O(2^S)

# 解答

// C++ 14
#include <iostream>
#include <string>
#include <vector>
#include <list>
#include <algorithm>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <unordered_map>
#include <math.h>

#define ll long long
#define Int int
#define loop(x, start, end) for(Int x = start; x < end; x++)
#define loopdown(x, start, end) for(int x = start; x > end; x--)
#define rep(n) for(int x = 0; x < n; x++)
#define span(a,x,y) a.begin()+x,a.begin()+y
#define span_all(a) a.begin(),a.end()
#define len(x) (x.size())
#define last(x) (*(x.end()-1))

using namespace std;
#include <sstream>
string S;

void input() {
  cin >> S;
}

Int dfs(string s) {
  stringstream ss(s);
  Int x = 0;
  ss >> x;
  if (s.length() == 1) return x;
  loop(n,1,s.length()) {
    string left = s.substr(0, n);
    string right = s.substr(n);
    stringstream ss2(left); Int leftNum = 0; ss2 >> leftNum;
    Int rightNum = dfs(s.substr(n));
    // i.e. 1 + 23
    //      1 + 2 + 3
    // Here '1 +' is added twice. (twice is the number of cases)
    x += leftNum * pow(2, right.length()-1) + rightNum;
  }
  return x;
}

void solve() {
  cout << dfs(S) << endl;
}

int main(void) {
  input();
  solve();
  return 0;
}

リモートフリーランス。ウェブサービス、スマホアプリエンジニア。
東アジアを拠点に世界を移動しながら活動してます!

お仕事のご依頼・お問い合わせはこちら

コメント