結果

問題 No.1705 Mode of long array
ユーザー tabae326tabae326
提出日時 2021-10-08 23:12:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 61 ms / 3,000 ms
コード長 1,519 bytes
コンパイル時間 2,277 ms
コンパイル使用メモリ 206,352 KB
実行使用メモリ 8,968 KB
最終ジャッジ日時 2024-07-23 06:57:59
合計ジャッジ時間 6,841 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 3 ms
6,944 KB
testcase_06 AC 5 ms
6,940 KB
testcase_07 AC 5 ms
6,940 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 4 ms
6,940 KB
testcase_10 AC 5 ms
6,940 KB
testcase_11 AC 5 ms
6,940 KB
testcase_12 AC 5 ms
6,940 KB
testcase_13 AC 47 ms
8,520 KB
testcase_14 AC 33 ms
6,944 KB
testcase_15 AC 33 ms
6,944 KB
testcase_16 AC 40 ms
6,944 KB
testcase_17 AC 29 ms
6,944 KB
testcase_18 AC 25 ms
6,940 KB
testcase_19 AC 46 ms
6,940 KB
testcase_20 AC 28 ms
6,944 KB
testcase_21 AC 37 ms
8,444 KB
testcase_22 AC 53 ms
8,772 KB
testcase_23 AC 35 ms
6,940 KB
testcase_24 AC 34 ms
6,940 KB
testcase_25 AC 34 ms
6,944 KB
testcase_26 AC 35 ms
6,940 KB
testcase_27 AC 35 ms
6,940 KB
testcase_28 AC 35 ms
6,940 KB
testcase_29 AC 34 ms
6,944 KB
testcase_30 AC 35 ms
6,944 KB
testcase_31 AC 34 ms
6,944 KB
testcase_32 AC 35 ms
6,940 KB
testcase_33 AC 59 ms
8,924 KB
testcase_34 AC 60 ms
8,968 KB
testcase_35 AC 60 ms
8,936 KB
testcase_36 AC 59 ms
8,960 KB
testcase_37 AC 58 ms
8,888 KB
testcase_38 AC 60 ms
8,872 KB
testcase_39 AC 60 ms
8,808 KB
testcase_40 AC 61 ms
8,964 KB
testcase_41 AC 60 ms
8,852 KB
testcase_42 AC 61 ms
8,864 KB
testcase_43 AC 44 ms
8,968 KB
testcase_44 AC 43 ms
8,896 KB
testcase_45 AC 43 ms
8,740 KB
testcase_46 AC 43 ms
8,900 KB
testcase_47 AC 44 ms
8,860 KB
testcase_48 AC 43 ms
8,844 KB
testcase_49 AC 57 ms
8,968 KB
testcase_50 AC 58 ms
8,864 KB
testcase_51 AC 58 ms
8,912 KB
testcase_52 AC 58 ms
8,912 KB
testcase_53 AC 58 ms
8,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, srt, end) for (long long i = (srt); i < (long long)(end); i++)
// Ref: https://qiita.com/ysuzuki19/items/d89057d65284ba1a16ac
#define dump(var)  do{std::cerr << #var << " : ";view(var);}while(0)
template<typename T> void view(T e){std::cerr << e << "\n";}
template<typename T> void view(const std::vector<T>& v){for(const auto& e : v){ std::cerr << e << " "; } std::cerr << "\n";}
template<typename T> void view(const std::vector<std::vector<T> >& vv){ std::cerr << "\n"; for(const auto& v : vv){ view(v); } }
template<typename T> void dump_cout(const T& v) { for(long long i = 0; i < v.size(); i++) std::cout << v[i] << (i == v.size()-1 ? "\n" : " "); }

#include <atcoder/segtree>
using namespace atcoder;
using S = pair<ll, ll>;
S op(S a, S b) { return max(a, b); }
S e() { return {0, 0}; }

void solve() {
    ll n, m;
    cin >> n >> m;
    vector<S> a(m);
    rep(i, 0, m) {
        cin >> a[i].first;
        a[i].second = i+1;
    }    
    segtree<S, op, e> seg(a);
    ll q;
    cin >> q;
    while(q--) {
        ll t, x, y;
        cin >> t >> x >> y;
        x--;
        if(t == 1) {
            seg.set(x, {seg.get(x).first + y, x+1});
        }
        if(t == 2) {
            seg.set(x, {seg.get(x).first - y, x+1});
        }   
        if(t == 3) {
            cout << seg.all_prod().second << "\n";
        }
    }
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    solve();
    return 0;
}
0