結果

問題 No.884 Eat and Add
ユーザー iqueue02iqueue02
提出日時 2020-06-27 10:51:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 25 ms / 1,000 ms
コード長 858 bytes
コンパイル時間 2,408 ms
コンパイル使用メモリ 205,712 KB
実行使用メモリ 14,336 KB
最終ジャッジ日時 2024-07-05 08:59:36
合計ジャッジ時間 3,048 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 25 ms
14,336 KB
testcase_04 AC 25 ms
14,208 KB
testcase_05 AC 25 ms
14,336 KB
testcase_06 AC 25 ms
14,336 KB
testcase_07 AC 24 ms
14,336 KB
testcase_08 AC 25 ms
14,336 KB
testcase_09 AC 24 ms
14,336 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i = 0; i < (n);i++)
#define sz(x) int(x.size())
typedef long long ll;
typedef long double ld;
typedef pair<int,int> P;
constexpr int INF = 2e9;

int main() {
  string s;
  cin >> s;
  s = '0' + s;
  reverse(s.begin(), s.end());
  int n  = s.size();
  vector<vector<int>> dp(n + 1, vector<int>(2, INF));
  dp[0][0] = 0;

  for (int i = 0; i < n; i++) {
    for (int j = 0; j < 2; j++) {
      int d = s[i] - '0';
      int now = d + j;
      int nj = 0;
      if (now == 2) {
        now = 0;
        nj = 1;
      }

      if (!now) dp[i + 1][nj] = min(dp[i + 1][nj], dp[i][j]);
      else {
        dp[i + 1][nj] = min(dp[i + 1][nj], dp[i][j] + 1);
        if (!nj) dp[i + 1][nj + 1] = min(dp[i + 1][nj + 1], dp[i][j] + 1);
      }
    }

  }

  cout << dp[n][0] << endl;
  return 0;
} 
0