結果

問題 No.1029 JJOOII 3
ユーザー chocopuuchocopuu
提出日時 2020-04-17 22:43:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 29 ms / 2,000 ms
コード長 2,488 bytes
コンパイル時間 2,389 ms
コンパイル使用メモリ 205,768 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-14 15:00:43
合計ジャッジ時間 4,028 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 8 ms
6,940 KB
testcase_05 AC 26 ms
6,940 KB
testcase_06 AC 18 ms
6,940 KB
testcase_07 AC 23 ms
6,944 KB
testcase_08 AC 24 ms
6,944 KB
testcase_09 AC 21 ms
6,940 KB
testcase_10 AC 22 ms
6,940 KB
testcase_11 AC 27 ms
6,944 KB
testcase_12 AC 16 ms
6,940 KB
testcase_13 AC 28 ms
6,944 KB
testcase_14 AC 27 ms
6,944 KB
testcase_15 AC 19 ms
6,944 KB
testcase_16 AC 22 ms
6,940 KB
testcase_17 AC 26 ms
6,940 KB
testcase_18 AC 26 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 3 ms
6,944 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 AC 3 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 29 ms
6,944 KB
testcase_33 AC 29 ms
6,940 KB
testcase_34 AC 29 ms
6,940 KB
testcase_35 AC 29 ms
6,940 KB
testcase_36 AC 29 ms
6,944 KB
testcase_37 AC 2 ms
6,940 KB
testcase_38 AC 2 ms
6,940 KB
testcase_39 AC 2 ms
6,940 KB
testcase_40 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define int long long
#define REP(i, n) for (int i = 0; i < (int)n; ++i)
#define RREP(i, n) for (int i = (int)n - 1; i >= 0; --i)
#define FOR(i, s, n) for (int i = s; i < (int)n; ++i)
#define RFOR(i, s, n) for (int i = (int)n - 1; i >= s; --i)
#define ALL(a) a.begin(), a.end()
#define IN(a, x, b) (a <= x && x < b)
template<class T>inline void out(T t){cout << t << "\n";}
template<class T,class... Ts>inline void out(T t,Ts... ts){cout << t << " ";out(ts...);}
template<class T>inline bool CHMIN(T&a,T b){if(a > b){a = b;return true;}return false;}
template<class T>inline bool CHMAX(T&a,T b){if(a < b){a = b;return true;}return false;}
constexpr int INF = 1e18;



signed main(){
	int N,K;
	cin >> N >> K;
	vector<tuple<string,int>>v(N);
	int ans = INF;
	REP(i,N){
		string s;
		int c;
		cin >> s >> c;
		v[i] = {s,c};
		int J = 0,O = 0,I = 0;
		REP(j,s.size()){
			if(s[j] == 'J')++J;
			if(J >= K && s[j] == 'O')++O;
			if(O >= K && s[j] == 'I')++I;
		}
		if(I >= K)CHMIN(ans,c);
	}
	vector<int>dp1(K + 100,INF);
	dp1[0] = 0;
	REP(i,N){
		auto[s,c] = v[i];
		int cnt = 0;
		REP(j,s.size()){
			if(s[j] == 'J')++cnt;
		}
		REP(j,K){
			CHMIN(dp1[j + cnt],dp1[j] + c);
		}
	}
	RREP(i,K + 99)CHMIN(dp1[i],dp1[i + 1]);
	vector<int>dp2(K + 100,INF);
	vector<int>dp3(K + 100,INF);
	dp2[0] = dp1[K];
	REP(i,N){
		int jj = 0,o = 0;
		auto[s,c] = v[i];
		REP(j,s.size()){
			if(s[j] == 'O')++o;
		}
		REP(j,s.size()){
			if(s[j] == 'J')++jj;
			else if(s[j] == 'O')--o;
			if(K - jj >= 0){
				int I = 0;
				if(o >= K){
					int no = 0;
					FOR(k,j + 1,s.size()){
						if(s[k] == 'O')++no;
						if(no >= K && s[k] == 'I')++I;
					}
					CHMIN(dp3[I],dp1[K - jj] + c);
				}
				CHMIN(dp2[o],dp1[K - jj] + c);
			}
		}
	}
	REP(i,N){
		auto[s,c] = v[i];
		int cnt = 0;
		REP(j,s.size()){
			if(s[j] == 'O')++cnt;
		}
		REP(j,K){
			CHMIN(dp2[j + cnt],dp2[j] + c);
		}
	}
	RREP(i,K + 99)CHMIN(dp2[i],dp2[i + 1]);
	dp3[0] = dp2[K];
	REP(i,N){
		int o = 0,ii = 0;
		auto[s,c] = v[i];
		REP(j,s.size()){
			if(s[j] == 'I')++ii;
		}
		REP(j,s.size()){
			if(s[j] == 'O')++o;
			else if(s[j] == 'I')--ii;
			if(K - o >= 0)CHMIN(dp3[ii],dp2[K - o] + c);
		}
	}
	REP(i,N){
		auto[s,c] = v[i];
		int cnt = 0;
		REP(j,s.size()){
			if(s[j] == 'I')++cnt;
		}
		REP(j,K){
			CHMIN(dp3[j + cnt],dp3[j] + c);
		}
	}
	RREP(i,K + 99)CHMIN(dp3[i],dp3[i + 1]);
	if(dp3[K] == INF)out(-1);
	else out(min(ans,dp3[K]));
	//REP(i,K + 1)out(i,dp1[i],dp2[i],dp3[i]);
}
0