結果

問題 No.884 Eat and Add
ユーザー snrnsidysnrnsidy
提出日時 2021-06-04 01:34:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3 ms / 1,000 ms
コード長 1,050 bytes
コンパイル時間 2,093 ms
コンパイル使用メモリ 199,676 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-17 16:23:57
合計ジャッジ時間 2,438 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h> 

using namespace std;

int main(void)
{
    cin.tie(0);
    ios::sync_with_stdio(false);
    
    //greedy 1이 2개 이상이 연속으로 이어져 있으면 하나를 추가해서라도 먹는 게 나음...
    int res = 0;
    string s;
    int len = 0;
    int n;

    cin >> s;

    n = s.length();

    for (int i = n - 1; i >= 0; i--)
    {
        if (s[i] == '0')
        {
            if (len > 0)
            {
                //cout << i << ' ' << s[i] << ' ' << len << '\n';
                if (len == 1)
                {
                    len = 0;
                    res++;
                }
                else
                {
                    len = 1;
                    s[i] = '1';
                    res++;
                }
            }
        }
        else
        {
            len++;
        }
    }
    if (len > 0)
    {
        if (len == 1)
        {
            res++;
        }
        else
        {
            res += 2;
        }
    }

    cout << res << '\n';
    return 0;
}
0