結果

問題 No.1029 JJOOII 3
ユーザー autumn-eelautumn-eel
提出日時 2020-04-17 22:33:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 264 ms / 2,000 ms
コード長 852 bytes
コンパイル時間 1,447 ms
コンパイル使用メモリ 169,512 KB
実行使用メモリ 148,372 KB
最終ジャッジ日時 2024-10-03 14:10:00
合計ジャッジ時間 6,909 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
10,572 KB
testcase_01 AC 3 ms
7,124 KB
testcase_02 AC 4 ms
14,672 KB
testcase_03 AC 20 ms
49,708 KB
testcase_04 AC 46 ms
61,576 KB
testcase_05 AC 229 ms
137,188 KB
testcase_06 AC 174 ms
118,564 KB
testcase_07 AC 199 ms
129,648 KB
testcase_08 AC 222 ms
129,704 KB
testcase_09 AC 195 ms
123,488 KB
testcase_10 AC 204 ms
127,212 KB
testcase_11 AC 254 ms
140,464 KB
testcase_12 AC 141 ms
109,616 KB
testcase_13 AC 250 ms
141,792 KB
testcase_14 AC 264 ms
144,664 KB
testcase_15 AC 161 ms
119,516 KB
testcase_16 AC 151 ms
126,056 KB
testcase_17 AC 197 ms
137,356 KB
testcase_18 AC 222 ms
135,576 KB
testcase_19 AC 5 ms
14,932 KB
testcase_20 AC 20 ms
79,704 KB
testcase_21 AC 19 ms
79,836 KB
testcase_22 AC 20 ms
79,832 KB
testcase_23 AC 19 ms
79,828 KB
testcase_24 AC 19 ms
79,964 KB
testcase_25 AC 19 ms
79,832 KB
testcase_26 AC 19 ms
79,960 KB
testcase_27 AC 21 ms
79,700 KB
testcase_28 AC 20 ms
79,708 KB
testcase_29 AC 19 ms
79,828 KB
testcase_30 AC 20 ms
79,832 KB
testcase_31 AC 20 ms
79,700 KB
testcase_32 AC 244 ms
148,372 KB
testcase_33 AC 249 ms
148,320 KB
testcase_34 AC 243 ms
145,980 KB
testcase_35 AC 242 ms
147,708 KB
testcase_36 AC 246 ms
146,928 KB
testcase_37 AC 3 ms
7,124 KB
testcase_38 AC 3 ms
10,712 KB
testcase_39 AC 4 ms
13,264 KB
testcase_40 AC 4 ms
13,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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-1)/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;
}
0