結果
問題 | No.1029 JJOOII 3 |
ユーザー | chocorusk |
提出日時 | 2020-04-17 22:08:16 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,123 bytes |
コンパイル時間 | 1,231 ms |
コンパイル使用メモリ | 130,432 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-03 13:13:15 |
合計ジャッジ時間 | 3,784 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 5 ms
5,248 KB |
testcase_04 | AC | 9 ms
5,248 KB |
testcase_05 | AC | 46 ms
5,632 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 46 ms
5,504 KB |
testcase_09 | AC | 41 ms
5,248 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 35 ms
5,248 KB |
testcase_13 | AC | 47 ms
5,888 KB |
testcase_14 | WA | - |
testcase_15 | AC | 37 ms
5,248 KB |
testcase_16 | AC | 40 ms
5,504 KB |
testcase_17 | AC | 43 ms
5,760 KB |
testcase_18 | AC | 44 ms
5,760 KB |
testcase_19 | AC | 1 ms
5,248 KB |
testcase_20 | AC | 14 ms
5,248 KB |
testcase_21 | AC | 14 ms
5,248 KB |
testcase_22 | AC | 15 ms
5,248 KB |
testcase_23 | AC | 12 ms
5,248 KB |
testcase_24 | AC | 14 ms
5,248 KB |
testcase_25 | AC | 16 ms
5,248 KB |
testcase_26 | AC | 21 ms
5,248 KB |
testcase_27 | AC | 26 ms
5,248 KB |
testcase_28 | AC | 23 ms
5,248 KB |
testcase_29 | AC | 21 ms
5,248 KB |
testcase_30 | AC | 26 ms
5,248 KB |
testcase_31 | AC | 23 ms
5,248 KB |
testcase_32 | AC | 102 ms
5,888 KB |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | AC | 102 ms
5,888 KB |
testcase_36 | WA | - |
testcase_37 | AC | 2 ms
5,248 KB |
testcase_38 | AC | 2 ms
5,248 KB |
testcase_39 | AC | 1 ms
5,248 KB |
testcase_40 | AC | 2 ms
5,248 KB |
ソースコード
#include <cstdio> #include <cstring> #include <iostream> #include <string> #include <cmath> #include <bitset> #include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <algorithm> #include <complex> #include <unordered_map> #include <unordered_set> #include <random> #include <cassert> #include <fstream> #include <utility> #include <functional> #include <time.h> #include <stack> #include <array> #define popcount __builtin_popcount using namespace std; typedef long long int ll; typedef pair<int, int> P; int main() { int n, k; cin>>n>>k; string s[80]; ll v[80]; int c[80][3]={}; int cc[80][81][3]={}; for(int i=0; i<n; i++){ cin>>s[i]>>v[i]; for(int j=0; j<s[i].size(); j++){ for(int l=0; l<3; l++) cc[i][j+1][l]=cc[i][j][l]; if(s[i][j]=='J') c[i][0]++, cc[i][j+1][0]++; else if(s[i][j]=='O') c[i][1]++, cc[i][j+1][1]++; else c[i][2]++, cc[i][j+1][2]++; } } const ll INF=1e18; ll dp[3][100010]; for(int i=0; i<3; i++){ for(int l=0; l<=k; l++) dp[i][l]=INF; dp[i][0]=0; for(int j=0; j<n; j++){ for(int l=0; l<=k; l++){ dp[i][min(k, l+c[j][i])]=min(dp[i][min(k, l+c[j][i])], dp[i][l]+v[j]); } } } ll ans=INF; for(int i=0; i<n; i++){ if(c[i][1]<k) continue; for(int p=0; p<=s[i].size(); p++){ for(int q=p+1; q<=s[i].size(); q++){ if(cc[i][q][1]-cc[i][p][1]<k) continue; ans=min(ans, v[i]+dp[0][max(0, k-cc[i][p][0])]+dp[2][max(0, k-(c[i][2]-cc[i][q][2]))]); } } } for(int i=0; i<n; i++){ for(int j=0; j<n; j++){ for(int p=0; p<=s[i].size(); p++){ for(int q=0; q<=s[j].size(); q++){ ans=min(ans, v[i]+v[j]+dp[0][max(0, k-cc[i][p][0])]+dp[1][max(0, k-(c[i][1]-cc[i][p][1])-cc[j][q][1])]+dp[2][max(0, k-(c[j][2]-cc[j][q][2]))]); } } } } if(ans>=INF/2) cout<<-1<<endl; else cout<<ans<<endl; return 0; }