結果

問題 No.1606 Stuffed Animals Keeper
ユーザー horitaka1999horitaka1999
提出日時 2021-12-10 23:51:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 462 ms / 3,000 ms
コード長 898 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 312,960 KB
最終ジャッジ日時 2024-07-18 18:40:07
合計ジャッジ時間 10,223 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
58,112 KB
testcase_01 AC 49 ms
58,240 KB
testcase_02 AC 44 ms
58,880 KB
testcase_03 AC 298 ms
193,664 KB
testcase_04 AC 326 ms
216,320 KB
testcase_05 AC 168 ms
127,872 KB
testcase_06 AC 210 ms
149,248 KB
testcase_07 AC 273 ms
193,536 KB
testcase_08 AC 265 ms
193,792 KB
testcase_09 AC 193 ms
148,608 KB
testcase_10 AC 155 ms
127,744 KB
testcase_11 AC 124 ms
107,392 KB
testcase_12 AC 207 ms
148,992 KB
testcase_13 AC 44 ms
60,672 KB
testcase_14 AC 45 ms
60,544 KB
testcase_15 AC 42 ms
60,160 KB
testcase_16 AC 357 ms
239,488 KB
testcase_17 AC 351 ms
238,592 KB
testcase_18 AC 351 ms
239,616 KB
testcase_19 AC 359 ms
239,104 KB
testcase_20 AC 361 ms
238,976 KB
testcase_21 AC 112 ms
89,600 KB
testcase_22 AC 118 ms
88,320 KB
testcase_23 AC 113 ms
88,448 KB
testcase_24 AC 113 ms
89,472 KB
testcase_25 AC 108 ms
88,192 KB
testcase_26 AC 75 ms
74,112 KB
testcase_27 AC 83 ms
79,872 KB
testcase_28 AC 81 ms
79,360 KB
testcase_29 AC 82 ms
80,256 KB
testcase_30 AC 75 ms
73,728 KB
testcase_31 AC 68 ms
71,296 KB
testcase_32 AC 50 ms
62,720 KB
testcase_33 AC 64 ms
69,376 KB
testcase_34 AC 53 ms
64,000 KB
testcase_35 AC 68 ms
70,656 KB
testcase_36 AC 66 ms
70,912 KB
testcase_37 AC 66 ms
69,888 KB
testcase_38 AC 63 ms
68,352 KB
testcase_39 AC 53 ms
64,256 KB
testcase_40 AC 55 ms
64,256 KB
testcase_41 AC 48 ms
61,824 KB
testcase_42 AC 49 ms
61,824 KB
testcase_43 AC 458 ms
312,704 KB
testcase_44 AC 444 ms
312,704 KB
testcase_45 AC 445 ms
312,448 KB
testcase_46 AC 436 ms
312,960 KB
testcase_47 AC 462 ms
312,704 KB
testcase_48 AC 42 ms
57,984 KB
testcase_49 AC 44 ms
58,368 KB
testcase_50 AC 39 ms
52,224 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
        if x == y == 0:
            continue
        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