結果
問題 | No.1029 JJOOII 3 |
ユーザー | jupiro |
提出日時 | 2020-04-19 15:55:17 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,838 bytes |
コンパイル時間 | 1,173 ms |
コンパイル使用メモリ | 123,124 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-05 13:36:45 |
合計ジャッジ時間 | 4,852 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,816 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | AC | 3 ms
6,820 KB |
testcase_20 | AC | 3 ms
6,816 KB |
testcase_21 | AC | 2 ms
6,820 KB |
testcase_22 | AC | 3 ms
6,820 KB |
testcase_23 | AC | 3 ms
6,820 KB |
testcase_24 | AC | 3 ms
6,820 KB |
testcase_25 | AC | 2 ms
6,820 KB |
testcase_26 | AC | 3 ms
6,816 KB |
testcase_27 | AC | 3 ms
6,824 KB |
testcase_28 | AC | 3 ms
6,820 KB |
testcase_29 | AC | 2 ms
6,816 KB |
testcase_30 | AC | 3 ms
6,820 KB |
testcase_31 | AC | 3 ms
6,816 KB |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | AC | 2 ms
6,824 KB |
testcase_38 | RE | - |
testcase_39 | AC | 2 ms
6,820 KB |
testcase_40 | AC | 2 ms
6,824 KB |
ソースコード
#include <cstdio> #include <iostream> #include <string> #include <sstream> #include <stack> #include <algorithm> #include <cmath> #include <queue> #include <map> #include <set> #include <cstdlib> #include <bitset> #include <tuple> #include <assert.h> #include <deque> #include <bitset> #include <iomanip> #include <limits> #include <chrono> #include <random> #include <array> #include <unordered_map> #include <functional> #include <complex> #include <numeric> 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; } constexpr long long MAX = 5100000; constexpr long long INF = 1LL << 60; constexpr int inf = 1 << 28; constexpr long long mod = 1000000007LL; //constexpr long long mod = 998244353LL; using namespace std; typedef unsigned long long ull; typedef long long ll; int main() { /* cin.tie(nullptr); ios::sync_with_stdio(false); */ ll N, K; cin >> N >> K; vector<string> vs(N); vector<ll> cost(N); for (int i = 0; i < N; i++) cin >> vs[i] >> cost[i]; vector<vector<ll>> cnt(N, vector<ll>(3)); for (int i = 0; i < N; i++) { for (int j = 0; j < vs[i].size(); j++) { if (vs[i][j] == 'J') cnt[i][0]++; if (vs[i][j] == 'O') cnt[i][1]++; if (vs[i][j] == 'I') cnt[i][2]++; } } string t; t += string(K, 'J') + string(K, 'O') + string(K, 'I') + string(100, '#'); vector<ll> dp(3 * K + 500, INF); dp[0] = 0; for (int i = 0; i < 3 * K; i++) { for (int j = 0; j < N; j++) { int pos = i; if (t[i] == t[i + 80]) { pos += cnt[j][K / i]; } else { for (int k = 0; k < vs[j].size(); k++) { if (t[pos] == vs[j][k]) pos++; } } chmin(dp[pos], dp[i] + cost[j]); } } if (dp[3 * K] == INF) dp[3 * K] = -1; cout << dp[3 * K] << endl; return 0; }