結果

問題 No.1029 JJOOII 3
ユーザー ShibuyapShibuyap
提出日時 2020-04-19 06:12:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,636 bytes
コンパイル時間 1,695 ms
コンパイル使用メモリ 168,984 KB
実行使用メモリ 6,016 KB
最終ジャッジ日時 2024-10-04 05:01:52
合計ジャッジ時間 3,554 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 WA -
testcase_04 AC 14 ms
5,248 KB
testcase_05 AC 56 ms
5,504 KB
testcase_06 AC 41 ms
5,248 KB
testcase_07 AC 50 ms
5,376 KB
testcase_08 AC 53 ms
5,504 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 61 ms
5,888 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 41 ms
5,248 KB
testcase_16 AC 47 ms
5,376 KB
testcase_17 AC 56 ms
5,760 KB
testcase_18 WA -
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 3 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 3 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 3 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 3 ms
5,248 KB
testcase_27 AC 4 ms
5,248 KB
testcase_28 AC 3 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 3 ms
5,248 KB
testcase_31 AC 3 ms
5,248 KB
testcase_32 AC 69 ms
5,888 KB
testcase_33 AC 68 ms
6,016 KB
testcase_34 AC 68 ms
6,016 KB
testcase_35 AC 69 ms
5,760 KB
testcase_36 AC 69 ms
5,888 KB
testcase_37 AC 1 ms
5,248 KB
testcase_38 AC 1 ms
5,248 KB
testcase_39 AC 2 ms
5,248 KB
testcase_40 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); ++i)
#define srep(i,s,t) for (int i = s; i < t; ++i)
#define drep(i,n) for(int i = (n)-1; i >= 0; --i)
using namespace std;
typedef long long int ll;
typedef pair<int,int> P;
#define yn {puts("YES");}else{puts("NO");}
#define MAX_N 200005

int main() {
    int n, k;
    cin >> n >> k;
    string s[n];
    ll c[n];
    rep(i,n)cin >> s[i] >> c[i];
    ll dp[k*3];
    rep(i,k*3)dp[i] = 1001001001001001001;

    int f[n][3] = {};
    int m[n];
    rep(i,n){
        m[i] = s[i].size();
        rep(j,n){
            if(s[i][j] == 'J')f[i][0]++;
            if(s[i][j] == 'O')f[i][1]++;
            if(s[i][j] == 'I')f[i][2]++;
        }
    }

    rep(i,k*3){
        rep(j,n){
            if(k > 200 && 100 <= i && i < k){
                dp[i] = min(dp[i], dp[i-f[j][0]] + c[j]);
            }else if(k > 200 && k + 100 <= i && i < k*2){
                dp[i] = min(dp[i], dp[i-f[j][1]] + c[j]);
            }else if(k > 200 && k*2 + 100 <= i && i < k*3){
                dp[i] = min(dp[i], dp[i-f[j][2]] + c[j]);
            }else{
                int now = i;
                drep(l,m[j]){
                    if(now == -1)break;
                    char x = 'J';
                    if(now >= k)x = 'O';
                    if(now >= k*2)x = 'I';
                    if(s[j][l] == x)now--;
                }
                if(now == -1)dp[i] = min(dp[i], c[j]);
                else dp[i] = min(dp[i], dp[now] + c[j]);
            }
        }
    }

    ll ans = dp[k*3-1];
    if(ans == 1001001001001001001)ans = -1;
    cout << ans << endl;
    return 0;
}
 
 
0