結果

問題 No.1705 Mode of long array
ユーザー harurunharurun
提出日時 2021-09-22 19:43:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,490 bytes
コンパイル時間 1,033 ms
コンパイル使用メモリ 88,628 KB
実行使用メモリ 17,312 KB
最終ジャッジ日時 2024-07-23 03:45:05
合計ジャッジ時間 15,704 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,888 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 5 ms
6,944 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 AC 5 ms
6,944 KB
testcase_06 AC 14 ms
6,944 KB
testcase_07 AC 15 ms
6,944 KB
testcase_08 AC 15 ms
6,940 KB
testcase_09 AC 12 ms
6,940 KB
testcase_10 AC 11 ms
6,940 KB
testcase_11 AC 16 ms
6,944 KB
testcase_12 AC 13 ms
6,944 KB
testcase_13 AC 236 ms
8,960 KB
testcase_14 AC 157 ms
6,944 KB
testcase_15 AC 142 ms
6,944 KB
testcase_16 AC 174 ms
6,940 KB
testcase_17 AC 121 ms
6,940 KB
testcase_18 AC 100 ms
6,944 KB
testcase_19 AC 210 ms
6,940 KB
testcase_20 AC 123 ms
6,944 KB
testcase_21 AC 178 ms
8,064 KB
testcase_22 AC 290 ms
9,728 KB
testcase_23 AC 126 ms
6,940 KB
testcase_24 AC 122 ms
6,940 KB
testcase_25 AC 122 ms
6,940 KB
testcase_26 AC 122 ms
6,944 KB
testcase_27 AC 120 ms
6,940 KB
testcase_28 AC 117 ms
6,940 KB
testcase_29 AC 121 ms
6,940 KB
testcase_30 AC 122 ms
6,944 KB
testcase_31 AC 119 ms
6,940 KB
testcase_32 AC 121 ms
6,940 KB
testcase_33 AC 314 ms
10,368 KB
testcase_34 AC 310 ms
10,240 KB
testcase_35 AC 304 ms
10,240 KB
testcase_36 AC 310 ms
10,240 KB
testcase_37 AC 313 ms
10,240 KB
testcase_38 AC 290 ms
10,240 KB
testcase_39 AC 293 ms
10,240 KB
testcase_40 AC 293 ms
10,240 KB
testcase_41 AC 293 ms
10,240 KB
testcase_42 AC 295 ms
10,240 KB
testcase_43 AC 253 ms
10,240 KB
testcase_44 AC 447 ms
10,240 KB
testcase_45 AC 439 ms
10,240 KB
testcase_46 AC 403 ms
10,240 KB
testcase_47 AC 406 ms
10,240 KB
testcase_48 AC 406 ms
10,240 KB
testcase_49 TLE -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <set>
#include <vector>
using namespace std;
using ll=long long;
using Pll=pair<ll,ll>;

int main(){
  ll N,M;
  cin>>N>>M;
  vector<ll> a(M);
  for(ll i=0;i<M;i++){
    cin>>a.at(i);
  }
  multiset<Pll> ms;
  for(ll i=0;i<M;i++){
    ms.insert(make_pair(a.at(i),i+1));
  }
  ll Q;
  cin>>Q;
  bool flag=false;
  ll before;
  for(ll i=0;i<Q;i++){
    //cerr<<"i:"<<i<<endl;
    ll T,X,Y;
    cin>>T>>X>>Y;
    if(T==1){
      flag=false;
      auto it=ms.lower_bound(make_pair(a.at(X-1),-1));
      auto last=ms.upper_bound(make_pair(a.at(X-1)+1,-1));
      for(;it!=last;it++){
        if((*it).second==X){
          ms.erase(it);
          break;
        }
      }
      a.at(X-1)+=Y;
      ms.insert(make_pair(a.at(X-1),X));
    }else if(T==2){
      flag=false;
      auto it=ms.lower_bound(make_pair(a.at(X-1),-1));
      auto last=ms.upper_bound(make_pair(a.at(X-1)+1,-1));
      for(;it!=last;it++){
        if((*it).second==X){
          ms.erase(it);
          break;
        }
      }
      a.at(X-1)-=Y;
      ms.insert(make_pair(a.at(X-1),X));
    }else{
      if(flag){
        cout<<before<<endl;
        continue;
      }
      flag=true;
      auto it=ms.lower_bound(make_pair((*ms.rbegin()).first,-1));
      auto last=ms.upper_bound(make_pair((*ms.rbegin()).first+1,-1));
      ll ans=0;
      for(;it!=last;it++){
        ans=max(ans,(*it).second);
      }
      cout<<ans<<endl;
      before=ans;
    }
  }
  return 0;
}
0