結果

問題 No.1705 Mode of long array
ユーザー harurunharurun
提出日時 2021-10-02 10:49:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 240 ms / 3,000 ms
コード長 820 bytes
コンパイル時間 1,008 ms
コンパイル使用メモリ 93,996 KB
実行使用メモリ 9,052 KB
最終ジャッジ日時 2024-07-23 03:48:12
合計ジャッジ時間 9,782 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 4 ms
6,940 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 4 ms
6,944 KB
testcase_06 AC 9 ms
6,944 KB
testcase_07 AC 12 ms
6,944 KB
testcase_08 AC 11 ms
6,940 KB
testcase_09 AC 10 ms
6,940 KB
testcase_10 AC 10 ms
6,944 KB
testcase_11 AC 11 ms
6,940 KB
testcase_12 AC 10 ms
6,940 KB
testcase_13 AC 150 ms
8,556 KB
testcase_14 AC 106 ms
6,940 KB
testcase_15 AC 112 ms
6,944 KB
testcase_16 AC 135 ms
6,944 KB
testcase_17 AC 98 ms
6,940 KB
testcase_18 AC 80 ms
6,940 KB
testcase_19 AC 146 ms
6,944 KB
testcase_20 AC 93 ms
6,940 KB
testcase_21 AC 114 ms
8,456 KB
testcase_22 AC 168 ms
8,904 KB
testcase_23 AC 93 ms
6,940 KB
testcase_24 AC 92 ms
6,940 KB
testcase_25 AC 93 ms
6,940 KB
testcase_26 AC 92 ms
6,940 KB
testcase_27 AC 93 ms
6,940 KB
testcase_28 AC 93 ms
6,944 KB
testcase_29 AC 93 ms
6,944 KB
testcase_30 AC 93 ms
6,944 KB
testcase_31 AC 93 ms
6,944 KB
testcase_32 AC 94 ms
6,944 KB
testcase_33 AC 163 ms
8,828 KB
testcase_34 AC 165 ms
8,848 KB
testcase_35 AC 165 ms
8,988 KB
testcase_36 AC 165 ms
8,968 KB
testcase_37 AC 165 ms
8,828 KB
testcase_38 AC 163 ms
8,816 KB
testcase_39 AC 162 ms
8,960 KB
testcase_40 AC 164 ms
9,024 KB
testcase_41 AC 164 ms
8,904 KB
testcase_42 AC 163 ms
9,008 KB
testcase_43 AC 237 ms
8,996 KB
testcase_44 AC 240 ms
8,844 KB
testcase_45 AC 237 ms
9,052 KB
testcase_46 AC 236 ms
8,996 KB
testcase_47 AC 236 ms
8,964 KB
testcase_48 AC 236 ms
8,960 KB
testcase_49 AC 180 ms
8,832 KB
testcase_50 AC 180 ms
8,960 KB
testcase_51 AC 178 ms
8,960 KB
testcase_52 AC 180 ms
8,824 KB
testcase_53 AC 179 ms
8,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/segtree>
#include <vector>
#include <iostream>
#include <algorithm>
#include <utility>
using namespace std;
using namespace atcoder;
using ll=long long;
using Pll=pair<ll,ll>;

Pll op(Pll a,Pll b){
  if(a.first>b.first){
    return a;
  }else{
    return b;
  }
}

Pll e(){
  return make_pair(-1LL,-1LL);
}

int main(){
  ll N,M;
  cin>>N>>M;
  vector<Pll>A(M);
  for(int i=0;i<M;i++){
    cin>>A.at(i).first;
    A.at(i).second=i+1;
  }
  ll Q;
  cin>>Q;
  segtree<Pll,op,e> seg(A);
  for(int i=0;i<Q;i++){
    ll T,X,Y;
    cin>>T>>X>>Y;
    if(T==1){
      Pll d=seg.get(X-1);
      seg.set(X-1,make_pair(d.first+Y,d.second));
    }else if(T==2){
      Pll d=seg.get(X-1);
      seg.set(X-1,make_pair(d.first-Y,d.second));
    }else{
      cout<<seg.all_prod().second<<endl;
    }
  }
  return 0;
}
0