結果
問題 | No.1029 JJOOII 3 |
ユーザー | rokahikou1 |
提出日時 | 2020-10-21 16:28:21 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,619 bytes |
コンパイル時間 | 2,229 ms |
コンパイル使用メモリ | 171,220 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-07-21 08:56:45 |
合計ジャッジ時間 | 19,827 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 83 ms
5,376 KB |
testcase_04 | AC | 271 ms
5,376 KB |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i, n) for(int(i) = 0; (i) < (n); (i)++) #define FOR(i, m, n) for(int(i) = (m); (i) < (n); (i)++) #define All(v) (v).begin(), (v).end() #define pb push_back #define MP(a, b) make_pair((a), (b)) template <class T> vector<T> make_vec(size_t a, T val) { return vector<T>(a, val); } template <class... Ts> auto make_vec(size_t a, Ts... ts) { return vector<decltype(make_vec(ts...))>(a, make_vec(ts...)); } using ll = long long; using pii = pair<int, int>; using pll = pair<ll, ll>; using Graph = vector<vector<int>>; template <typename T> struct edge { int to; T cost; edge(int t, T c) : to(t), cost(c) {} }; template <typename T> using WGraph = vector<vector<edge<T>>>; const int INF = 1 << 30; const ll LINF = 1LL << 60; const int MOD = 1e9 + 7; int main() { int N, K; cin >> N >> K; vector<string> S(N); vector<ll> C(N); rep(i, N) cin >> S[i] >> C[i]; auto dp = make_vec(3 * K + 1, LINF); dp[0] = 0; for(int i = 0; i < 3 * K; i++) { for(int j = 0; j < N; j++) { int now = i; for(int k = 0; k < S[j].size(); k++) { if(now < K && S[j][k] == 'J') now++; else if(now >= K && now < 2 * K && S[j][k] == 'O') now++; else if(now >= 2 * K && now < 3 * K && S[j][k] == 'I') now++; if(now == 3 * K) break; } dp[now] = min(dp[now], dp[i] + C[j]); } } cout << (dp[3 * K] == LINF ? -1 : dp[3 * K]) << endl; }