結果

問題 No.1606 Stuffed Animals Keeper
ユーザー horitaka1999horitaka1999
提出日時 2021-12-10 23:49:30
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 853 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 698,240 KB
最終ジャッジ日時 2024-07-18 18:37:28
合計ジャッジ時間 11,782 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
58,624 KB
testcase_01 AC 42 ms
58,624 KB
testcase_02 AC 42 ms
58,752 KB
testcase_03 AC 378 ms
261,120 KB
testcase_04 AC 433 ms
306,304 KB
testcase_05 AC 211 ms
171,392 KB
testcase_06 AC 256 ms
192,512 KB
testcase_07 AC 339 ms
237,696 KB
testcase_08 AC 335 ms
237,472 KB
testcase_09 AC 226 ms
171,192 KB
testcase_10 AC 192 ms
148,864 KB
testcase_11 AC 161 ms
126,720 KB
testcase_12 AC 247 ms
192,640 KB
testcase_13 AC 44 ms
60,544 KB
testcase_14 AC 44 ms
61,184 KB
testcase_15 MLE -
testcase_16 AC 489 ms
306,204 KB
testcase_17 AC 489 ms
307,072 KB
testcase_18 AC 455 ms
306,244 KB
testcase_19 AC 457 ms
306,484 KB
testcase_20 AC 445 ms
306,176 KB
testcase_21 AC 96 ms
89,276 KB
testcase_22 AC 118 ms
88,192 KB
testcase_23 AC 94 ms
88,288 KB
testcase_24 AC 94 ms
89,728 KB
testcase_25 AC 90 ms
88,428 KB
testcase_26 AC 58 ms
74,112 KB
testcase_27 AC 66 ms
79,872 KB
testcase_28 AC 68 ms
79,360 KB
testcase_29 AC 80 ms
80,384 KB
testcase_30 AC 63 ms
73,984 KB
testcase_31 AC 56 ms
72,064 KB
testcase_32 AC 42 ms
63,104 KB
testcase_33 AC 52 ms
69,120 KB
testcase_34 AC 44 ms
64,128 KB
testcase_35 AC 55 ms
70,784 KB
testcase_36 AC 54 ms
70,304 KB
testcase_37 AC 57 ms
70,144 KB
testcase_38 AC 54 ms
68,480 KB
testcase_39 AC 44 ms
64,640 KB
testcase_40 AC 44 ms
64,128 KB
testcase_41 AC 41 ms
62,464 KB
testcase_42 AC 41 ms
62,208 KB
testcase_43 AC 406 ms
314,240 KB
testcase_44 AC 407 ms
313,988 KB
testcase_45 AC 416 ms
313,900 KB
testcase_46 AC 403 ms
313,984 KB
testcase_47 AC 417 ms
314,204 KB
testcase_48 AC 37 ms
58,496 KB
testcase_49 AC 36 ms
58,752 KB
testcase_50 AC 35 ms
58,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
B = [(0,0)]
x = 0
y = 0
for i in range(N):
    if A[i] == 2 or i == N-1:
        if A[i] == 0:
            x += 1
        elif A[i] == 1:
            y += 1
        B.append((x,y))
        x = 0
        y = 0
    elif A[i] == 0:
        x += 1
    elif A[i] == 1:
        y += 1
INF = float('inf')
dp = [[INF] * 10001 for _ in range(len(B))]
def check(t):
    if 0 <= t < 10001:
        return True
    else:
        return False
dp[0][5000] = 0
for i in range(1,len(B)):
    x,y = B[i]
    for s in range(10001):
        if dp[i-1][s] == INF:
            continue
        if check(s-x):
            dp[i][s-x] = min(dp[i-1][s] + x,dp[i][s-x])
        if check(s+y):
            dp[i][s+y] = min(dp[i-1][s] + y,dp[i][s+y])
ans = dp[len(B)-1][5000]
if ans == INF:
    print(-1)
else:
    print(ans//2)
0