結果

問題 No.1705 Mode of long array
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-01-16 17:37:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 254 ms / 3,000 ms
コード長 953 bytes
コンパイル時間 1,415 ms
コンパイル使用メモリ 118,440 KB
実行使用メモリ 10,368 KB
最終ジャッジ日時 2024-06-09 23:59:00
合計ジャッジ時間 12,329 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 4 ms
6,940 KB
testcase_06 AC 10 ms
6,944 KB
testcase_07 AC 12 ms
6,940 KB
testcase_08 AC 11 ms
6,944 KB
testcase_09 AC 11 ms
6,940 KB
testcase_10 AC 10 ms
6,944 KB
testcase_11 AC 11 ms
6,944 KB
testcase_12 AC 11 ms
6,940 KB
testcase_13 AC 194 ms
8,832 KB
testcase_14 AC 131 ms
6,944 KB
testcase_15 AC 120 ms
6,944 KB
testcase_16 AC 155 ms
6,940 KB
testcase_17 AC 110 ms
6,940 KB
testcase_18 AC 89 ms
6,944 KB
testcase_19 AC 167 ms
6,940 KB
testcase_20 AC 101 ms
6,944 KB
testcase_21 AC 147 ms
8,064 KB
testcase_22 AC 215 ms
9,728 KB
testcase_23 AC 102 ms
6,940 KB
testcase_24 AC 111 ms
6,944 KB
testcase_25 AC 107 ms
6,944 KB
testcase_26 AC 108 ms
6,944 KB
testcase_27 AC 110 ms
6,944 KB
testcase_28 AC 103 ms
6,940 KB
testcase_29 AC 102 ms
6,940 KB
testcase_30 AC 102 ms
6,944 KB
testcase_31 AC 101 ms
6,940 KB
testcase_32 AC 105 ms
6,940 KB
testcase_33 AC 235 ms
10,240 KB
testcase_34 AC 233 ms
10,240 KB
testcase_35 AC 233 ms
10,240 KB
testcase_36 AC 236 ms
10,240 KB
testcase_37 AC 233 ms
10,240 KB
testcase_38 AC 238 ms
10,240 KB
testcase_39 AC 231 ms
10,240 KB
testcase_40 AC 237 ms
10,240 KB
testcase_41 AC 240 ms
10,240 KB
testcase_42 AC 228 ms
10,240 KB
testcase_43 AC 233 ms
10,240 KB
testcase_44 AC 245 ms
10,240 KB
testcase_45 AC 254 ms
10,240 KB
testcase_46 AC 238 ms
10,240 KB
testcase_47 AC 230 ms
10,240 KB
testcase_48 AC 235 ms
10,240 KB
testcase_49 AC 215 ms
10,240 KB
testcase_50 AC 214 ms
10,240 KB
testcase_51 AC 211 ms
10,368 KB
testcase_52 AC 216 ms
10,240 KB
testcase_53 AC 216 ms
10,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <iomanip>
#include <queue>
#include <algorithm>
#include <numeric>
#include <deque>
#include <complex>
#include <cassert>

using namespace std;

int main(){

    long long N, M, X, Y, T, Q, A, idx;
    cin >> N >> M;
    vector<long long> cnt(M+1);
    multiset<pair<long long, long long>> st;
    for (int i=1; i<=M; i++){
        cin >> A;
        cnt[i] = A;
        st.insert({A, i});
    }

    cin >> Q;
    for (int i=0; i<Q; i++){
        cin >> T >> X >> Y;
        if (T == 1){
            st.erase({cnt[X], X});
            cnt[X] += Y;
            st.insert({cnt[X], X});
        }
        else if (T == 2){ 
            st.erase({cnt[X], X});
            cnt[X] -= Y;
            st.insert({cnt[X], X});
        }
        else if (T == 3){
            tie(A, idx) = *st.rbegin();
            cout << idx << endl;
        }
    }

    return 0;
}
0