結果

問題 No.2372 既視感
ユーザー t98slidert98slider
提出日時 2023-07-07 21:36:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 5 ms / 2,000 ms
コード長 1,081 bytes
コンパイル時間 1,723 ms
コンパイル使用メモリ 173,160 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-28 22:35:36
合計ジャッジ時間 2,793 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n, k, q;
    cin >> n >> k >> q;
    vector<string> st;
    while(q--){
        int cmd;
        cin >> cmd;
        if(cmd == 1){
            string s;
            cin >> s;
            st.emplace_back(s);
        }else{
            int ans = 0, su = 0;
            vector<string> wi;
            for(int i = 0; i < 6; i++){
                string s;
                int tim;
                cin >> s >> tim;
                bool flag = false;
                for(int j = 0; j < n && j < st.size(); j++){
                    if(s == st.rbegin()[j]){
                        flag = true;
                        break;
                    }
                }
                su += (flag ? min(k, tim) : tim);
                if(su <= 60){
                    ans++;
                    wi.emplace_back(s);
                }
            }
            st.insert(st.end(), wi.begin(), wi.end());
            cout << ans << '\n';
        }
    }
}
0