結果

問題 No.1705 Mode of long array
ユーザー karinohitokarinohito
提出日時 2024-09-16 09:06:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 173 ms / 3,000 ms
コード長 838 bytes
コンパイル時間 2,319 ms
コンパイル使用メモリ 207,208 KB
実行使用メモリ 9,080 KB
最終ジャッジ日時 2024-09-16 09:06:56
合計ジャッジ時間 9,668 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 7 ms
5,376 KB
testcase_07 AC 9 ms
5,376 KB
testcase_08 AC 9 ms
5,376 KB
testcase_09 AC 8 ms
5,376 KB
testcase_10 AC 8 ms
5,376 KB
testcase_11 AC 7 ms
5,376 KB
testcase_12 AC 8 ms
5,376 KB
testcase_13 AC 77 ms
8,448 KB
testcase_14 AC 59 ms
6,144 KB
testcase_15 AC 67 ms
5,376 KB
testcase_16 AC 79 ms
5,376 KB
testcase_17 AC 59 ms
5,376 KB
testcase_18 AC 46 ms
5,376 KB
testcase_19 AC 84 ms
5,376 KB
testcase_20 AC 53 ms
5,376 KB
testcase_21 AC 60 ms
8,448 KB
testcase_22 AC 88 ms
8,684 KB
testcase_23 AC 32 ms
5,376 KB
testcase_24 AC 33 ms
5,376 KB
testcase_25 AC 33 ms
5,376 KB
testcase_26 AC 32 ms
5,376 KB
testcase_27 AC 32 ms
5,376 KB
testcase_28 AC 32 ms
5,376 KB
testcase_29 AC 32 ms
5,376 KB
testcase_30 AC 33 ms
5,376 KB
testcase_31 AC 33 ms
5,376 KB
testcase_32 AC 32 ms
5,376 KB
testcase_33 AC 55 ms
9,008 KB
testcase_34 AC 55 ms
8,832 KB
testcase_35 AC 54 ms
8,940 KB
testcase_36 AC 55 ms
8,832 KB
testcase_37 AC 57 ms
8,960 KB
testcase_38 AC 54 ms
8,832 KB
testcase_39 AC 54 ms
8,960 KB
testcase_40 AC 54 ms
8,832 KB
testcase_41 AC 55 ms
8,736 KB
testcase_42 AC 55 ms
9,080 KB
testcase_43 AC 168 ms
8,832 KB
testcase_44 AC 169 ms
8,876 KB
testcase_45 AC 166 ms
8,932 KB
testcase_46 AC 173 ms
8,920 KB
testcase_47 AC 172 ms
8,912 KB
testcase_48 AC 172 ms
8,960 KB
testcase_49 AC 81 ms
8,932 KB
testcase_50 AC 81 ms
8,952 KB
testcase_51 AC 80 ms
8,960 KB
testcase_52 AC 82 ms
8,832 KB
testcase_53 AC 83 ms
8,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#include<atcoder/segtree>
using namespace atcoder;

using S=pair<ll,ll>;
S op(S a,S b){
    if(a.first<=b.first)return b;
    else return a;
}
S e(){return {-1,-1};};


int main() {

    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    ll N,M;
    cin>>N>>M;
    vector<pair<ll,ll>> A(M);
    for(int i=0;i<M;i++){
        cin>>A[i].first;
        A[i].second=i;
    }
    segtree<S,op,e> seg(A);
    int Q;
    cin>>Q;
    for(int q=0;q<Q;q++){
        ll T,X,Y;
        cin>>T>>X>>Y;
        if(T==1){
            X--;
            seg.set(X,{seg.get(X).first+Y,X});
        }
        else if(T==2){
            X--;
            seg.set(X,{seg.get(X).first-Y,X});
        }
        else{
            cout<<seg.all_prod().second+1<<endl;
        }
    }

    
}
0