結果

問題 No.1705 Mode of long array
ユーザー harurunharurun
提出日時 2021-09-19 18:23:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 534 ms / 3,000 ms
コード長 2,114 bytes
コンパイル時間 1,950 ms
コンパイル使用メモリ 121,496 KB
実行使用メモリ 35,392 KB
最終ジャッジ日時 2024-07-23 03:41:54
合計ジャッジ時間 18,172 ms
ジャッジサーバーID
(参考情報)
judge1 / 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 5 ms
5,376 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 5 ms
5,376 KB
testcase_06 AC 12 ms
5,376 KB
testcase_07 AC 15 ms
5,376 KB
testcase_08 AC 14 ms
5,376 KB
testcase_09 AC 13 ms
5,376 KB
testcase_10 AC 13 ms
5,376 KB
testcase_11 AC 14 ms
5,376 KB
testcase_12 AC 13 ms
5,376 KB
testcase_13 AC 414 ms
31,512 KB
testcase_14 AC 263 ms
22,372 KB
testcase_15 AC 197 ms
15,020 KB
testcase_16 AC 252 ms
17,748 KB
testcase_17 AC 171 ms
13,944 KB
testcase_18 AC 147 ms
12,772 KB
testcase_19 AC 317 ms
22,736 KB
testcase_20 AC 181 ms
15,528 KB
testcase_21 AC 307 ms
27,136 KB
testcase_22 AC 492 ms
35,392 KB
testcase_23 AC 131 ms
6,940 KB
testcase_24 AC 129 ms
6,940 KB
testcase_25 AC 129 ms
6,944 KB
testcase_26 AC 130 ms
6,944 KB
testcase_27 AC 130 ms
6,944 KB
testcase_28 AC 128 ms
6,940 KB
testcase_29 AC 129 ms
6,940 KB
testcase_30 AC 127 ms
6,940 KB
testcase_31 AC 131 ms
6,940 KB
testcase_32 AC 131 ms
6,944 KB
testcase_33 AC 534 ms
31,868 KB
testcase_34 AC 505 ms
31,784 KB
testcase_35 AC 523 ms
31,648 KB
testcase_36 AC 511 ms
31,656 KB
testcase_37 AC 515 ms
31,772 KB
testcase_38 AC 515 ms
31,716 KB
testcase_39 AC 510 ms
31,692 KB
testcase_40 AC 526 ms
31,896 KB
testcase_41 AC 508 ms
31,652 KB
testcase_42 AC 523 ms
31,680 KB
testcase_43 AC 319 ms
17,412 KB
testcase_44 AC 311 ms
17,300 KB
testcase_45 AC 316 ms
17,300 KB
testcase_46 AC 314 ms
17,424 KB
testcase_47 AC 314 ms
17,296 KB
testcase_48 AC 315 ms
17,296 KB
testcase_49 AC 370 ms
22,932 KB
testcase_50 AC 372 ms
22,928 KB
testcase_51 AC 371 ms
23,052 KB
testcase_52 AC 376 ms
22,932 KB
testcase_53 AC 395 ms
22,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <unordered_map>
#include <set>
#include <algorithm>
#include <utility>
using namespace std;
using ll=long long;

struct Queries{
  ll T,X,Y;
};

class Mode{
  private:
    unordered_map<ll,ll> place;
    vector<ll> count;
    vector<set<ll>> S;
    multiset<ll> max_S;
  public:
    Mode(ll M,unordered_map<ll,ll>& um,vector<ll>& A){
      place=um;
      S.resize(um.size());
      count.resize(M,0);
      for(ll i=0;i<M;i++){
        max_S.insert(0);
        add(i,A.at(i));
      }
    }
    void add(ll x,ll y){
      ll now=count.at(x);
      S.at(place.at(now)).erase(x);
      max_S.erase(max_S.find(place.at(now)));
      S.at(place.at(now+y)).insert(x);
      max_S.insert(place.at(now+y));
      count.at(x)+=y;
    }

    void erase(ll x,ll y){
      ll now=count.at(x);
      S.at(place.at(now)).erase(x);
      max_S.erase(max_S.find(place.at(now)));
      S.at(place.at(now-y)).insert(x);
      max_S.insert(place.at(now-y));
      count.at(x)-=y;
    }
    ll get(){
      ll max_place=*max_S.rbegin();
      return *S.at(max_place).rbegin()+1;
    }
};


int main(){
  ll N,M;
  cin>>N>>M;
  vector<ll> a(M);
  for(ll i=0;i<M;i++){
    cin>>a.at(i);
  }
  vector<ll> b=a;
  ll Q;
  cin>>Q;
  vector<Queries> query(Q);
  for(ll i=0;i<Q;i++){
    cin>>query.at(i).T>>query.at(i).X>>query.at(i).Y;
    if(query.at(i).T==1){
      b.push_back(b.at(query.at(i).X-1));
      b.at(query.at(i).X-1)+=query.at(i).Y;
    }else if(query.at(i).T==2){
      b.push_back(b.at(query.at(i).X-1));
      b.at(query.at(i).X-1)-=query.at(i).Y;
    }
  }
  b.push_back(0);
  sort(b.begin(),b.end());
  unordered_map<ll,ll> place;
  place.insert(make_pair(b.at(0),0));
  ll cnt=1;
  for(ll i=1;i<b.size();i++){
    if(b.at(i-1)!=b.at(i)){
      place.insert(make_pair(b.at(i),cnt));
      cnt++;
    }
  }
  Mode mode(M,place,a);
  for(ll i=0;i<Q;i++){
    if(query.at(i).T==1){
      mode.add(query.at(i).X-1,query.at(i).Y);
    }else if(query.at(i).T==2){
      mode.erase(query.at(i).X-1,query.at(i).Y);
    }else{
      cout<<mode.get()<<endl;
    }
  }
  return 0;
}
0