結果
問題 | No.2372 既視感 |
ユーザー | bortik |
提出日時 | 2023-07-20 18:01:42 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,043 bytes |
コンパイル時間 | 2,562 ms |
コンパイル使用メモリ | 206,580 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-20 14:09:47 |
合計ジャッジ時間 | 4,665 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | RE | - |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | RE | - |
testcase_14 | WA | - |
testcase_15 | AC | 3 ms
6,944 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | RE | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define ll long long #define rep(i, a, n) for (int i = (int)(a); i < (int)(n); i++) #define rrep(i, n, a) for (int i = (int)(n); i >= (int)(a); i--) void solve(){ int n,k,q; cin >> n >> k >> q; string t[6]; int d[6]; vector<string> seen; while(q--){ int c; cin >> c; if(c == 1){ string s; cin >> s; seen.push_back(s); } else { rep(i,0,6) cin >> t[i] >> d[i]; int ans = 0; int time = 0; rep(i,0,6){ rrep(j,seen.size()-1, max((unsigned long)1, seen.size()-n-1)){ if(seen[j] == t[i]) d[i] = min(d[i],k); } } rep(i,0,6){ if(time+d[i] <= 60){ time += d[i]; ans++; } else break; } cout << ans << '\n'; } } } int main(){ ios::sync_with_stdio(false); cin.tie(0); solve(); return 0; }