結果
問題 | No.1029 JJOOII 3 |
ユーザー | tktk_snsn |
提出日時 | 2020-12-31 18:01:47 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,278 bytes |
コンパイル時間 | 552 ms |
コンパイル使用メモリ | 82,452 KB |
実行使用メモリ | 77,296 KB |
最終ジャッジ日時 | 2024-10-09 17:08:22 |
合計ジャッジ時間 | 7,167 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
52,608 KB |
testcase_01 | AC | 41 ms
51,840 KB |
testcase_02 | AC | 39 ms
52,096 KB |
testcase_03 | AC | 64 ms
64,384 KB |
testcase_04 | AC | 86 ms
65,920 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 210 ms
74,624 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 148 ms
73,088 KB |
testcase_13 | AC | 227 ms
73,856 KB |
testcase_14 | WA | - |
testcase_15 | AC | 142 ms
67,712 KB |
testcase_16 | AC | 126 ms
67,456 KB |
testcase_17 | AC | 175 ms
71,168 KB |
testcase_18 | WA | - |
testcase_19 | RE | - |
testcase_20 | WA | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | AC | 64 ms
67,968 KB |
testcase_28 | AC | 61 ms
67,200 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 60 ms
66,304 KB |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | AC | 232 ms
75,136 KB |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
ソースコード
inf = 10 ** 18 N, K = map(int, input().split()) C = [-1] * N J = [-1] * N O = [-1] * N I = [-1] * N JO = [-1] * N OI = [-1] * N for i in range(N): si, ci = input().split() C[i] = int(ci) J[i] = si.count("J") O[i] = si.count("O") I[i] = si.count("I") jj = 0 oo = O[i] tmp = [(0, oo)] for s in si: if s == "J": jj += 1 tmp.append((jj, oo)) if s == "O": oo -= 1 JO[i] = tmp[:] oo = 0 ii = I[i] tmp = [(0, ii)] for s in si: if s == "O": oo += 1 tmp.append((oo, ii)) if s == "I": ii -= 1 OI[i] = tmp[:] dpJ = [inf] * (K + 1) dpO = [inf] * (K + 1) dpI = [inf] * (K + 1) dpJ[0] = 0 for j, c in zip(J, C): for i in range(K - j + 1): dpJ[i+j] = min(dpJ[i+j], dpJ[i] + c) for jo, c in zip(JO, C): for a, b in jo: dpO[b] = min(dpO[b], dpJ[K-a] + c) for j, c in zip(O, C): for i in range(K - j + 1): dpO[i+j] = min(dpO[i+j], dpO[i] + c) for oi, c in zip(OI, C): for a, b in oi: dpI[b] = min(dpI[b], dpO[K-a] + c) for j, c in zip(I, C): for i in range(K - j + 1): dpI[i+j] = min(dpI[i+j], dpI[i] + c) if dpI[K] >= inf: print(-1) else: print(dpI[K])