結果

問題 No.1029 JJOOII 3
ユーザー autumn-eelautumn-eel
提出日時 2020-04-17 22:12:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 641 bytes
コンパイル時間 1,534 ms
コンパイル使用メモリ 167,240 KB
実行使用メモリ 12,704 KB
最終ジャッジ日時 2024-10-03 13:36:00
合計ジャッジ時間 26,037 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
11,904 KB
testcase_01 AC 4 ms
6,016 KB
testcase_02 AC 2 ms
6,144 KB
testcase_03 AC 73 ms
6,016 KB
testcase_04 AC 236 ms
6,016 KB
testcase_05 AC 1,881 ms
6,820 KB
testcase_06 AC 1,433 ms
6,016 KB
testcase_07 AC 1,546 ms
6,144 KB
testcase_08 TLE -
testcase_09 AC 1,464 ms
6,016 KB
testcase_10 AC 1,602 ms
6,016 KB
testcase_11 TLE -
testcase_12 AC 1,020 ms
6,016 KB
testcase_13 AC 1,794 ms
6,820 KB
testcase_14 TLE -
testcase_15 AC 660 ms
6,016 KB
testcase_16 AC 3 ms
6,016 KB
testcase_17 AC 1,093 ms
6,016 KB
testcase_18 AC 1,471 ms
6,016 KB
testcase_19 AC 3 ms
6,016 KB
testcase_20 AC 4 ms
6,016 KB
testcase_21 AC 4 ms
5,888 KB
testcase_22 AC 4 ms
6,144 KB
testcase_23 AC 4 ms
6,016 KB
testcase_24 AC 4 ms
6,016 KB
testcase_25 AC 3 ms
6,016 KB
testcase_26 AC 4 ms
6,144 KB
testcase_27 AC 5 ms
6,144 KB
testcase_28 AC 4 ms
6,144 KB
testcase_29 AC 4 ms
6,144 KB
testcase_30 AC 4 ms
6,016 KB
testcase_31 AC 4 ms
6,144 KB
testcase_32 TLE -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
権限があれば一括ダウンロードができます

ソースコード

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 main(){
	int n,K;cin>>n>>K;
	rep(i,n){
		cin>>s[i]>>c[i];
	}
	memset(dp,0x3f,sizeof(dp));
	dp[0]=0;
	rep(i,3*K){
		if(dp[i]==INFL)continue;
		rep(j,n){
			int cur=i;
			rep(k,s[j].size()){
				char want=(cur<K?'J':(cur<2*K?'O':'I'));
				if(cur<3*K&&s[j][k]==want)cur++;
			}
			dp[cur]=min(dp[cur],dp[i]+c[j]);
		}
	}
	if(dp[3*K]==INFL)puts("-1");
	else cout<<dp[3*K]<<endl;
}
0