結果

問題 No.1705 Mode of long array
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-06-03 16:17:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 241 ms / 3,000 ms
コード長 873 bytes
コンパイル時間 1,068 ms
コンパイル使用メモリ 116,608 KB
実行使用メモリ 10,368 KB
最終ジャッジ日時 2024-06-09 03:39:46
合計ジャッジ時間 12,155 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 4 ms
6,940 KB
testcase_06 AC 8 ms
6,944 KB
testcase_07 AC 12 ms
6,940 KB
testcase_08 AC 11 ms
6,944 KB
testcase_09 AC 10 ms
6,940 KB
testcase_10 AC 9 ms
6,944 KB
testcase_11 AC 10 ms
6,944 KB
testcase_12 AC 9 ms
6,940 KB
testcase_13 AC 173 ms
8,832 KB
testcase_14 AC 119 ms
6,940 KB
testcase_15 AC 115 ms
6,940 KB
testcase_16 AC 144 ms
6,944 KB
testcase_17 AC 99 ms
6,940 KB
testcase_18 AC 83 ms
6,940 KB
testcase_19 AC 158 ms
6,940 KB
testcase_20 AC 96 ms
6,944 KB
testcase_21 AC 135 ms
8,064 KB
testcase_22 AC 208 ms
9,728 KB
testcase_23 AC 97 ms
6,940 KB
testcase_24 AC 98 ms
6,940 KB
testcase_25 AC 96 ms
6,940 KB
testcase_26 AC 98 ms
6,940 KB
testcase_27 AC 96 ms
6,940 KB
testcase_28 AC 96 ms
6,944 KB
testcase_29 AC 98 ms
6,944 KB
testcase_30 AC 97 ms
6,944 KB
testcase_31 AC 99 ms
6,944 KB
testcase_32 AC 98 ms
6,944 KB
testcase_33 AC 225 ms
10,240 KB
testcase_34 AC 225 ms
10,240 KB
testcase_35 AC 221 ms
10,240 KB
testcase_36 AC 225 ms
10,240 KB
testcase_37 AC 223 ms
10,240 KB
testcase_38 AC 225 ms
10,240 KB
testcase_39 AC 221 ms
10,240 KB
testcase_40 AC 231 ms
10,240 KB
testcase_41 AC 220 ms
10,368 KB
testcase_42 AC 231 ms
10,240 KB
testcase_43 AC 226 ms
10,368 KB
testcase_44 AC 241 ms
10,368 KB
testcase_45 AC 222 ms
10,240 KB
testcase_46 AC 223 ms
10,240 KB
testcase_47 AC 224 ms
10,240 KB
testcase_48 AC 225 ms
10,240 KB
testcase_49 AC 204 ms
10,240 KB
testcase_50 AC 206 ms
10,240 KB
testcase_51 AC 204 ms
10,240 KB
testcase_52 AC 206 ms
10,240 KB
testcase_53 AC 206 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;
using ll = long long;

int main(){

    ll N, M, Q, t, x, y;
    cin >> N >> M;
    vector<ll> cnt(M+1);
    multiset<pair<ll, ll>> st;
    for (int i=1; i<=M; i++) cin >> cnt[i];

    for (int i=1; i<=M; i++) st.insert({cnt[i], i});
    cin >> Q;
    while(Q){
        Q--;
        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 cout << st.rbegin()->second << endl;
    }

    return 0;
}
0