結果

問題 No.884 Eat and Add
ユーザー e869120e869120
提出日時 2019-08-30 20:15:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 8 ms / 1,000 ms
コード長 712 bytes
コンパイル時間 546 ms
コンパイル使用メモリ 67,444 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-01 14:18:12
合計ジャッジ時間 1,253 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 8 ms
6,944 KB
testcase_04 AC 8 ms
6,944 KB
testcase_05 AC 8 ms
6,944 KB
testcase_06 AC 8 ms
6,944 KB
testcase_07 AC 8 ms
6,940 KB
testcase_08 AC 7 ms
6,944 KB
testcase_09 AC 8 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>
using namespace std;

string S;
int A[1 << 18], dp[1 << 18][2];

int main() {
	cin >> S;
	for (int i = 0; i < S.size(); i++) A[S.size() - 1 - i] = (S[i] - '0');
	for (int i = 0; i <= S.size() + 1; i++) { dp[i][0] = (1 << 30); dp[i][1] = (1 << 30); }

	dp[0][0] = 0;
	for (int i = 0; i <= S.size(); i++) {
		for (int j = 0; j < 2; j++) {
			if (dp[i][j] == (1 << 30)) continue;

			for (int k = 0; k < 2; k++) {
				int ret = 0;
				if ((A[i] + j + k) % 2 == 1) ret++;
				if (k == 1) ret++;

				int s = 0; if (A[i] + j + k >= 2) s = 1;
				dp[i + 1][s] = min(dp[i + 1][s], dp[i][j] + ret);
			}
		}
	}
	cout << dp[S.size() + 1][0] << endl;
	return 0;
}
0