結果

問題 No.1705 Mode of long array
ユーザー ripityripity
提出日時 2022-11-02 12:12:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 226 ms / 3,000 ms
コード長 777 bytes
コンパイル時間 4,094 ms
コンパイル使用メモリ 265,144 KB
実行使用メモリ 9,172 KB
最終ジャッジ日時 2024-07-16 19:01:47
合計ジャッジ時間 13,677 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 4 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 5 ms
5,376 KB
testcase_06 AC 9 ms
5,376 KB
testcase_07 AC 12 ms
5,376 KB
testcase_08 AC 12 ms
5,376 KB
testcase_09 AC 10 ms
5,376 KB
testcase_10 AC 10 ms
5,376 KB
testcase_11 AC 10 ms
5,376 KB
testcase_12 AC 10 ms
5,376 KB
testcase_13 AC 130 ms
8,576 KB
testcase_14 AC 96 ms
6,016 KB
testcase_15 AC 103 ms
5,376 KB
testcase_16 AC 126 ms
5,376 KB
testcase_17 AC 96 ms
5,376 KB
testcase_18 AC 74 ms
5,376 KB
testcase_19 AC 135 ms
5,376 KB
testcase_20 AC 83 ms
5,376 KB
testcase_21 AC 105 ms
8,572 KB
testcase_22 AC 153 ms
8,700 KB
testcase_23 AC 87 ms
5,376 KB
testcase_24 AC 85 ms
5,376 KB
testcase_25 AC 87 ms
5,376 KB
testcase_26 AC 84 ms
5,376 KB
testcase_27 AC 86 ms
5,376 KB
testcase_28 AC 85 ms
5,376 KB
testcase_29 AC 86 ms
5,376 KB
testcase_30 AC 85 ms
5,376 KB
testcase_31 AC 88 ms
5,376 KB
testcase_32 AC 86 ms
5,376 KB
testcase_33 AC 148 ms
8,848 KB
testcase_34 AC 150 ms
8,820 KB
testcase_35 AC 146 ms
9,028 KB
testcase_36 AC 146 ms
9,008 KB
testcase_37 AC 144 ms
8,824 KB
testcase_38 AC 147 ms
8,908 KB
testcase_39 AC 144 ms
8,944 KB
testcase_40 AC 150 ms
8,884 KB
testcase_41 AC 146 ms
8,892 KB
testcase_42 AC 147 ms
8,964 KB
testcase_43 AC 220 ms
8,968 KB
testcase_44 AC 223 ms
9,024 KB
testcase_45 AC 226 ms
8,980 KB
testcase_46 AC 220 ms
8,944 KB
testcase_47 AC 219 ms
9,024 KB
testcase_48 AC 225 ms
9,172 KB
testcase_49 AC 164 ms
8,820 KB
testcase_50 AC 162 ms
8,884 KB
testcase_51 AC 163 ms
9,032 KB
testcase_52 AC 165 ms
8,844 KB
testcase_53 AC 164 ms
8,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
struct S {
  long long mx;
  int argmx;
};
S op(S l, S r) {
  if( l.mx > r.mx ) return l;
  else return r;
}
S e() {
  return S{0, 0};
}
int main() {
  long long N;
  int M;
  cin >> N >> M;
  vector<S> A(M);
  for( int i = 0; i < M; i++ ) {
    long long val;
    cin >> val;
    A[i] = S{val, i};
  }
  int Q;
  cin >> Q;
  segtree<S, op, e> st(A);
  for( int q = 0; q < Q; q++ ) {
    int T, X;
    long long Y;
    cin >> T >> X >> Y;
    X--;
    if( T == 1 ) {
      S s = st.get(X);
      st.set(X, S{s.mx+Y, X});
    }else if( T == 2 ) {
      S s = st.get(X);
      st.set(X, S{s.mx-Y, X});
    }else {
      S s = st.all_prod();
      cout << s.argmx+1 << endl;
    }
  }
}
0