結果
問題 | No.884 Eat and Add |
ユーザー | erbowl |
提出日時 | 2020-03-19 22:09:23 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,018 bytes |
コンパイル時間 | 1,723 ms |
コンパイル使用メモリ | 169,552 KB |
実行使用メモリ | 5,652 KB |
最終ジャッジ日時 | 2024-05-08 03:30:09 |
合計ジャッジ時間 | 2,120 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 6 ms
5,376 KB |
testcase_08 | AC | 6 ms
5,376 KB |
testcase_09 | AC | 9 ms
5,652 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
ソースコード
typedef long long ll; #include <bits/stdc++.h> using namespace std; int main() { string s; std::cin >> s; ll n = s.length(); vector<ll> cnt; ll ren0 = 0; ll ren1 = 0; for (int i = 0; i < n; i++) { if(s[i]=='1'){ if(ren0==0){ ren1++; }else{ cnt.push_back(ren0); ren0=0; ren1=1; } }else{ if(ren1==0){ ren0++; }else{ cnt.push_back(ren1); ren1=0; ren0=1; } } } ll ans = 0; cnt.push_back(max(ren0,ren1)); for (int i = 0; i < cnt.size(); i++) { if(i%2==0){ if(i<cnt.size()-2 && cnt[i+1]==1){ ans++; }else{ if(cnt[i]==1){ ans++; }else{ ans+=2; } } } } std::cout << ans << std::endl; }