結果
問題 | No.1288 yuki collection |
ユーザー | chocorusk |
提出日時 | 2020-08-14 09:22:07 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,854 bytes |
コンパイル時間 | 1,480 ms |
コンパイル使用メモリ | 129,664 KB |
実行使用メモリ | 18,816 KB |
最終ジャッジ日時 | 2024-06-28 05:00:41 |
合計ジャッジ時間 | 7,590 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 9 ms
12,416 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 4 ms
7,168 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 13 ms
16,896 KB |
testcase_09 | AC | 8 ms
10,752 KB |
testcase_10 | AC | 16 ms
18,816 KB |
testcase_11 | AC | 6 ms
9,088 KB |
testcase_12 | AC | 11 ms
14,336 KB |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | AC | 2 ms
5,376 KB |
testcase_42 | AC | 2 ms
5,376 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 n; string s; ll v[3030]; ll dp[101][27][27][27]; int main() { cin>>n; cin>>s; for(int i=0; i<n; i++) cin>>v[i]; assert(n<=100); for(int i=0; i<=n; i++){ for(int j=0; j<=n/4; j++){ for(int k=0; k<=n/4; k++){ for(int l=0; l<=n/4; l++){ dp[i][j][k][l]=-1; } } } } dp[0][0][0][0]=0; for(int i=0; i<n; i++){ for(int j=0; j<=n/4; j++){ for(int k=0; k<=n/4; k++){ for(int l=0; l<=n/4; l++){ if(dp[i][j][k][l]==-1) continue; dp[i+1][j][k][l]=max(dp[i+1][j][k][l], dp[i][j][k][l]); if(s[i]=='y'){ dp[i+1][j+1][k][l]=max(dp[i+1][j+1][k][l], dp[i][j][k][l]+v[i]); }else if(s[i]=='u'){ if(j) dp[i+1][j-1][k+1][l]=max(dp[i+1][j-1][k+1][l], dp[i][j][k][l]+v[i]); }else if(s[i]=='k'){ if(k) dp[i+1][j][k-1][l+1]=max(dp[i+1][j][k-1][l+1], dp[i][j][k][l]+v[i]); }else{ if(l) dp[i+1][j][k][l-1]=max(dp[i+1][j][k][l-1], dp[i][j][k][l]+v[i]); } } } } } cout<<dp[n][0][0][0]<<endl; return 0; }