結果

問題 No.1029 JJOOII 3
ユーザー vwxyzvwxyz
提出日時 2024-07-17 04:38:52
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 906 bytes
コンパイル時間 989 ms
コンパイル使用メモリ 98,860 KB
実行使用メモリ 13,752 KB
最終ジャッジ日時 2024-07-17 04:39:18
合計ジャッジ時間 26,083 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,752 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 55 ms
6,940 KB
testcase_04 AC 182 ms
6,940 KB
testcase_05 AC 1,859 ms
6,944 KB
testcase_06 AC 1,479 ms
6,940 KB
testcase_07 AC 1,374 ms
6,940 KB
testcase_08 TLE -
testcase_09 AC 1,359 ms
6,944 KB
testcase_10 AC 1,665 ms
6,940 KB
testcase_11 TLE -
testcase_12 AC 938 ms
6,940 KB
testcase_13 AC 1,648 ms
6,940 KB
testcase_14 AC 1,895 ms
6,940 KB
testcase_15 AC 742 ms
6,940 KB
testcase_16 AC 1,024 ms
6,940 KB
testcase_17 AC 1,105 ms
6,944 KB
testcase_18 AC 1,019 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 3 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 3 ms
6,940 KB
testcase_23 AC 3 ms
6,944 KB
testcase_24 AC 3 ms
6,944 KB
testcase_25 AC 3 ms
6,940 KB
testcase_26 AC 3 ms
6,944 KB
testcase_27 AC 3 ms
6,940 KB
testcase_28 AC 4 ms
6,944 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 3 ms
6,944 KB
testcase_31 AC 3 ms
6,944 KB
testcase_32 TLE -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <climits>

using namespace std;

int main() {
    int N, K;
    cin >> N >> K;
    vector<string> S(N);
    vector<long long> C(N);
    for (int i = 0; i < N; ++i) {
        cin >> S[i] >> C[i];
    }
    
    string JOI(K, 'J');
    JOI += string(K, 'O');
    JOI += string(K, 'I');
    
    long long inf = 1ll<<60;
    vector<long long> dp(3 * K + 1, inf);
    dp[0] = 0;
    
    for (int k0 = 0; k0 <= 3 * K; ++k0) {
        for (int n = 0; n < N; ++n) {
            int k1 = k0;
            for (char s : S[n]) {
                if (k1 < 3 * K && JOI[k1] == s) {
                    ++k1;
                }
            }
            dp[k1] = min(dp[k1], dp[k0] + C[n]);
        }
    }
    
    long long ans = dp[3 * K];
    if (ans == inf) {
        ans = -1;
    }
    
    cout << ans << endl;
    return 0;
}
0