結果

問題 No.1029 JJOOII 3
ユーザー hipopohipopo
提出日時 2020-04-21 14:07:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 3,314 bytes
コンパイル時間 1,596 ms
コンパイル使用メモリ 145,808 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2024-04-16 23:07:07
合計ジャッジ時間 3,857 ms
ジャッジサーバーID
(参考情報)
judge5 / 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 6 ms
5,376 KB
testcase_04 AC 17 ms
5,376 KB
testcase_05 AC 64 ms
6,144 KB
testcase_06 AC 45 ms
5,376 KB
testcase_07 AC 57 ms
5,376 KB
testcase_08 AC 60 ms
5,888 KB
testcase_09 AC 51 ms
5,376 KB
testcase_10 AC 55 ms
5,632 KB
testcase_11 AC 66 ms
6,144 KB
testcase_12 AC 37 ms
5,376 KB
testcase_13 AC 65 ms
6,144 KB
testcase_14 AC 67 ms
6,016 KB
testcase_15 AC 48 ms
5,376 KB
testcase_16 AC 53 ms
5,504 KB
testcase_17 AC 64 ms
6,016 KB
testcase_18 AC 65 ms
6,144 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 69 ms
6,272 KB
testcase_33 AC 73 ms
6,144 KB
testcase_34 AC 74 ms
6,400 KB
testcase_35 AC 71 ms
6,144 KB
testcase_36 AC 74 ms
6,272 KB
testcase_37 AC 1 ms
5,376 KB
testcase_38 AC 2 ms
5,376 KB
testcase_39 AC 1 ms
5,376 KB
testcase_40 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cmath>
#include <complex>
#include <iostream>
#include <map>
#include <queue>
#include <set>
#include <vector>
#include <functional>
#include <cstring>
#include <regex>
#include <random>
#include <cassert>
#include <stack>
using namespace std;

#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define repr(i, s, n) for (int i = (s); i < (int)(n); i++)
#define revrep(i, n) for (int i = (n) - 1; i >= 0; i--)
#define revrepr(i, s, n) for (int i = (n) - 1; i >= s; i--)
#define debug(x) cerr << #x << ": " << x << "\n"
#define popcnt(x) __builtin_popcount(x)

const double PI = acos(-1.0);

using ll = long long;
using P = pair<int, int>;

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

template<class T>
istream& operator >>(istream &is, vector<T> &v) {
    for (int i = 0; i < (int)v.size(); i++) cin >> v.at(i);
    return is;
}

template<class T, class U>
ostream& operator <<(ostream &os, pair<T, U> p) {
    cout << '(' << p.first << ", " << p.second << ')';
    return os;
}

template<class T>
void print(const vector<T> &v, const string &delimiter) { rep(i, v.size()) cout << (0 < i ? delimiter : "") << v.at(i); cout << endl; }

template<class T>
void print(const vector<vector<T>> &vv, const string &delimiter) { for (const auto &v: vv) print(v, delimiter); }


int main() {
    int n, k;
    cin >> n >> k;
    vector<string> s(n);
    vector<ll> c(n);
    rep(i, n) cin >> s[i] >> c[i];
    
    string JOI = "JOI";
    vector<vector<int>> cnt(n, vector<int>(3));
    rep(i, n) {
        for (char c: s[i]) rep(j, 3) if (c == JOI[j]) cnt[i][j]++;
    }
    
    const ll INF = 1e18;
    vector<ll> dp(k * 3 + 1, INF);
    dp[0] = 0;
    
    string t;
    rep(i, 3) rep(j, k) t += JOI[i];
    
    rep(i, k * 3) {
        int idx = i / k;
        rep(j, n) {
            if (t[i] != t[min(k * 3 - 1, i + cnt[j][idx])]) {
                if (idx == 0) {
                    int rem_J = k - i;
                    int cnt_O = 0;
                    int cnt_I = 0;
                    for (char c: s[j]) {
                        if (rem_J == 0) {
                            if (k == cnt_O) {
                                if (c == 'I') cnt_I++;
                            }
                            else if (c == 'O') cnt_O++;
                        }
                        else {
                            if (c == 'J') rem_J--;
                        }
                    }
                    chmin(dp[k + min(k, cnt_O) + min(k, cnt_I)], dp[i] + c[j]);
                }
                else {
                    int rem_O = k * 2 - i;
                    int cnt_I = 0;
                    for (char c: s[j]) {
                        if (rem_O == 0) {
                            if (c == 'I') cnt_I++;
                        }
                        else if (c == 'O') rem_O--;
                    }
                    chmin(dp[k * 2 + min(k, cnt_I)], dp[i] + c[j]);
                }
            }
            else {
                chmin(dp[min(k * 3, i + cnt[j][idx])], dp[i] + c[j]);
            }
        }
    }
    
    if (dp[k * 3] != INF) cout << dp[k * 3] << endl;
    else cout << -1 << endl;
}
0