結果
問題 | No.1029 JJOOII 3 |
ユーザー | autumn-eel |
提出日時 | 2020-04-17 22:32:14 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 848 bytes |
コンパイル時間 | 1,412 ms |
コンパイル使用メモリ | 169,320 KB |
実行使用メモリ | 268,964 KB |
最終ジャッジ日時 | 2024-10-03 14:07:47 |
合計ジャッジ時間 | 7,201 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
11,348 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 4 ms
15,184 KB |
testcase_03 | WA | - |
testcase_04 | AC | 44 ms
60,808 KB |
testcase_05 | WA | - |
testcase_06 | AC | 186 ms
136,164 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 167 ms
223,048 KB |
testcase_16 | AC | 150 ms
229,996 KB |
testcase_17 | AC | 211 ms
241,416 KB |
testcase_18 | WA | - |
testcase_19 | AC | 4 ms
14,156 KB |
testcase_20 | AC | 24 ms
112,860 KB |
testcase_21 | AC | 23 ms
109,148 KB |
testcase_22 | AC | 24 ms
108,760 KB |
testcase_23 | AC | 24 ms
112,220 KB |
testcase_24 | AC | 23 ms
109,020 KB |
testcase_25 | AC | 25 ms
113,492 KB |
testcase_26 | AC | 32 ms
151,640 KB |
testcase_27 | AC | 35 ms
162,648 KB |
testcase_28 | AC | 33 ms
160,600 KB |
testcase_29 | AC | 33 ms
158,296 KB |
testcase_30 | AC | 35 ms
163,676 KB |
testcase_31 | AC | 33 ms
157,784 KB |
testcase_32 | WA | - |
testcase_33 | AC | 249 ms
260,556 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | AC | 3 ms
6,820 KB |
testcase_38 | WA | - |
testcase_39 | AC | 4 ms
13,392 KB |
testcase_40 | AC | 3 ms
12,876 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i,n)for(int i=0;i<n;i++) using namespace std; typedef long long ll; typedef pair<int,int>P; const int MOD=1000000007; const int INF=0x3f3f3f3f; const ll INFL=0x3f3f3f3f3f3f3f3f; string s[100]; int c[100]; ll dp[320000]; int nx[100][3200000]; int main(){ int n,K;cin>>n>>K; rep(i,n){ cin>>s[i]>>c[i]; } rep(i,n){ rep(j,3*K){ if(j){ int l=j/K,r=(j+100)/K; if(l==r){ nx[i][j]=nx[i][j-1]+1; continue; } } int cur=j; rep(k,s[i].size()){ char want=(cur<K?'J':(cur<2*K?'O':'I')); if(cur<3*K&&s[i][k]==want)cur++; } cur=min(cur,3*K); nx[i][j]=cur; } } memset(dp,0x3f,sizeof(dp)); dp[0]=0; rep(i,3*K){ if(dp[i]==INFL)continue; rep(j,n){ dp[nx[j][i]]=min(dp[nx[j][i]],dp[i]+c[j]); } } if(dp[3*K]==INFL)puts("-1"); else cout<<dp[3*K]<<endl; }