結果
問題 | No.1029 JJOOII 3 |
ユーザー | beet |
提出日時 | 2020-04-17 21:32:28 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 63 ms / 2,000 ms |
コード長 | 1,487 bytes |
コンパイル時間 | 3,141 ms |
コンパイル使用メモリ | 197,740 KB |
最終ジャッジ日時 | 2025-01-09 19:47:18 |
ジャッジサーバーID (参考情報) |
judge5 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 38 |
ソースコード
#include <bits/stdc++.h> using namespace std; template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;} template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;} using Int = long long; const char newl = '\n'; //INSERT ABOVE HERE const Int MAX = 1e5+100; const Int INF = 1e18; Int dp[4][MAX]; Int cnt[4][100]={}; signed main(){ cin.tie(0); ios::sync_with_stdio(0); for(Int i=0;i<4;i++) for(Int j=0;j<MAX;j++) dp[i][j]=INF; Int n,k; cin>>n>>k; vector<string> ss(n); vector<Int> cs(n); for(Int i=0;i<n;i++) cin>>ss[i]>>cs[i]; string B="JOI$^&"; for(Int i=0;i<3;i++) for(Int p=0;p<n;p++) for(char c:ss[p]) if(c==B[i]) cnt[i][p]++; dp[0][0]=0; for(Int i=0;i<3;i++){ for(Int j=0;j<k;j++){ for(Int p=0;p<n;p++){ if(j+cnt[i][p]<k){ chmin(dp[i][j+cnt[i][p]],dp[i][j]+cs[p]); }else{ Int need=k-j,start=0,next=0,nextnext=0; for(char c:ss[p]){ if(c==B[i]) need--; if(need<=0 and c==B[i+1]) start++; if(start>=k and c==B[i+2]) next++; if(next>=k and c==B[i+3]) nextnext++; } assert(need<=0); if(start<k) chmin(dp[i+1][start],dp[i][j]+cs[p]); else if(next<k) chmin(dp[i+2][next],dp[i][j]+cs[p]); else chmin(dp[i+3][nextnext],dp[i][j]+cs[p]); } } } } Int ans=dp[3][0]; if(ans==INF) ans=-1; cout<<ans<<newl; return 0; }