結果

問題 No.884 Eat and Add
ユーザー tjaketjake
提出日時 2019-09-13 23:50:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 491 ms / 1,000 ms
コード長 569 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 70,764 KB
最終ジャッジ日時 2024-07-04 10:38:57
合計ジャッジ時間 3,880 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 27 ms
10,496 KB
testcase_03 AC 454 ms
70,632 KB
testcase_04 AC 491 ms
70,636 KB
testcase_05 AC 465 ms
70,632 KB
testcase_06 AC 462 ms
70,632 KB
testcase_07 AC 254 ms
70,636 KB
testcase_08 AC 452 ms
70,764 KB
testcase_09 AC 462 ms
70,636 KB
testcase_10 AC 25 ms
10,496 KB
testcase_11 AC 25 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)
N = list(input())
ans = 0
cnt = 0
N.reverse()
n = len(N)
memo = [[-1, -1] for i in range(n)]
def dfs(i, b):
    if i == n:
        return b
    if memo[i][b] != -1:
        return memo[i][b]
    r = 10**6
    if N[i] == '1':
        if b:
            r = min(r, dfs(i+1, 1))
        else:
            r = min(r, min(dfs(i+1, 0), dfs(i+1, 1)) + 1)
    else:
        if b:
            r = min(r, min(dfs(i+1, 0), dfs(i+1, 1)) + 1)
        else:
            r = min(r, dfs(i+1, 0))
    memo[i][b] = r
    return r
print(dfs(0, 0))

0