結果
問題 | No.884 Eat and Add |
ユーザー | ganariya |
提出日時 | 2019-09-22 23:30:30 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,764 bytes |
コンパイル時間 | 1,637 ms |
コンパイル使用メモリ | 146,728 KB |
実行使用メモリ | 14,524 KB |
最終ジャッジ日時 | 2024-09-19 03:47:50 |
合計ジャッジ時間 | 2,620 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
5,376 KB |
ソースコード
//include //------------------------------------------ #include <vector> #include <list> #include <map> #include <unordered_map> #include <climits> #include <set> #include <unordered_set> #include <deque> #include <stack> #include <bitset> #include <algorithm> #include <functional> #include <numeric> #include <utility> #include <sstream> #include <iostream> #include <iomanip> #include <cstdio> #include <cmath> #include <cstdlib> #include <cctype> #include <string> #include <cstring> #include <ctime> #include <queue> #include <random> #include <complex> #include <regex> #include <locale> #include <random> #include <type_traits> using namespace std; #define SHOW_VECTOR(v) {std::cerr << #v << "\t:";for(const auto& xxx : v){std::cerr << xxx << " ";}std::cerr << "\n";} #define SHOW_MAP(v){std::cerr << #v << endl; for(const auto& xxx: v){std::cerr << xxx.first << " " << xxx.second << "\n";}} using LL = long long; //------------------------------------------ //------------------------------------------ int main() { string S; cin >> S; int N = S.size(); reverse(S.begin(), S.end()); S += '0'; vector<vector<int>> dp(N + 1, vector<int>(2, 1e6)); dp[0][0] = 0; for (int i = 0; i < N; i++) { for (int j = 0; j < 2; j++) { if (S[i] == '0' && (!j)) { dp[i + 1][1] = min(dp[i + 1][1], dp[i][j]); } else if (S[i] == '1' && (j)) { dp[i + 1][0] = min(dp[i + 1][0], dp[i][j]); } else { dp[i + 1][1] = min(dp[i + 1][1], dp[i][j] + 1); dp[i + 1][0] = min(dp[i + 1][0], dp[i][j] + 1); } } } int ans = (dp[N][0]); cout << ans << endl; return 0; }