結果

問題 No.2372 既視感
ユーザー bortikbortik
提出日時 2023-07-20 18:08:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 8 ms / 2,000 ms
コード長 1,116 bytes
コンパイル時間 2,268 ms
コンパイル使用メモリ 206,308 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-20 18:40:30
合計ジャッジ時間 3,024 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 1 ms
4,348 KB
testcase_06 AC 1 ms
4,348 KB
testcase_07 AC 2 ms
4,348 KB
testcase_08 AC 3 ms
4,348 KB
testcase_09 AC 2 ms
4,348 KB
testcase_10 AC 3 ms
4,348 KB
testcase_11 AC 2 ms
4,348 KB
testcase_12 AC 2 ms
4,348 KB
testcase_13 AC 3 ms
4,348 KB
testcase_14 AC 2 ms
4,348 KB
testcase_15 AC 2 ms
4,348 KB
testcase_16 AC 3 ms
4,348 KB
testcase_17 AC 2 ms
4,348 KB
testcase_18 AC 1 ms
4,348 KB
testcase_19 AC 2 ms
4,348 KB
testcase_20 AC 2 ms
4,348 KB
testcase_21 AC 2 ms
4,348 KB
testcase_22 AC 2 ms
4,348 KB
testcase_23 AC 4 ms
4,348 KB
testcase_24 AC 3 ms
4,348 KB
testcase_25 AC 4 ms
4,348 KB
testcase_26 AC 4 ms
4,348 KB
testcase_27 AC 4 ms
4,348 KB
testcase_28 AC 8 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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){
                rep(j,0,min((unsigned long)n,seen.size())){
                    if(seen[seen.size()-j-1] == 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';
            rep(i,0,ans){
                seen.push_back(t[i]);
            }
        }
    }
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    solve();

    return 0;
}
0