結果

問題 No.884 Eat and Add
ユーザー tktk_snsntktk_snsn
提出日時 2021-02-11 19:29:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 1,000 ms
コード長 477 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 82,432 KB
最終ジャッジ日時 2024-07-18 07:32:54
合計ジャッジ時間 1,709 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 78 ms
80,256 KB
testcase_04 AC 85 ms
82,048 KB
testcase_05 AC 82 ms
81,792 KB
testcase_06 AC 77 ms
79,616 KB
testcase_07 AC 51 ms
64,000 KB
testcase_08 AC 52 ms
64,512 KB
testcase_09 AC 69 ms
82,432 KB
testcase_10 AC 41 ms
51,584 KB
testcase_11 AC 39 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def RunLengthEncoding(S):
    res = []
    N = len(S)
    i = 0
    while i < N:
        cnt = 1
        while i < N - 1 and S[i] == S[i + 1]:
            cnt += 1
            i += 1
        res.append(cnt)
        i += 1
    return res


S = input()
R = RunLengthEncoding(S)
if S[-1] == "0":
    R.pop()
R.reverse()


X = min(2, R[0])
Y = 0
for zero, one in zip(R[::2], R[1::2]):
    nX = min(X + min(2, one), Y + zero + 2)
    nY = min(X, Y + zero)
    X, Y = nX, nY
print(X)
0