結果

問題 No.1705 Mode of long array
ユーザー Ricky_ponRicky_pon
提出日時 2021-10-08 22:50:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 368 ms / 3,000 ms
コード長 2,333 bytes
コンパイル時間 2,715 ms
コンパイル使用メモリ 217,356 KB
実行使用メモリ 16,256 KB
最終ジャッジ日時 2024-07-23 05:58:13
合計ジャッジ時間 12,193 ms
ジャッジサーバーID
(参考情報)
judge2 / 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 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 7 ms
5,376 KB
testcase_07 AC 7 ms
5,376 KB
testcase_08 AC 7 ms
5,376 KB
testcase_09 AC 7 ms
5,376 KB
testcase_10 AC 6 ms
5,376 KB
testcase_11 AC 7 ms
5,376 KB
testcase_12 AC 7 ms
5,376 KB
testcase_13 AC 215 ms
13,696 KB
testcase_14 AC 126 ms
9,344 KB
testcase_15 AC 75 ms
5,376 KB
testcase_16 AC 102 ms
5,504 KB
testcase_17 AC 69 ms
5,376 KB
testcase_18 AC 57 ms
5,376 KB
testcase_19 AC 134 ms
7,552 KB
testcase_20 AC 86 ms
6,400 KB
testcase_21 AC 164 ms
12,160 KB
testcase_22 AC 253 ms
15,104 KB
testcase_23 AC 62 ms
5,376 KB
testcase_24 AC 60 ms
5,376 KB
testcase_25 AC 60 ms
5,376 KB
testcase_26 AC 60 ms
5,376 KB
testcase_27 AC 60 ms
5,376 KB
testcase_28 AC 60 ms
5,376 KB
testcase_29 AC 60 ms
5,376 KB
testcase_30 AC 61 ms
5,376 KB
testcase_31 AC 61 ms
5,376 KB
testcase_32 AC 60 ms
5,376 KB
testcase_33 AC 344 ms
16,256 KB
testcase_34 AC 336 ms
16,128 KB
testcase_35 AC 327 ms
16,256 KB
testcase_36 AC 339 ms
16,128 KB
testcase_37 AC 331 ms
16,128 KB
testcase_38 AC 368 ms
16,256 KB
testcase_39 AC 346 ms
16,256 KB
testcase_40 AC 335 ms
16,128 KB
testcase_41 AC 343 ms
16,128 KB
testcase_42 AC 341 ms
16,128 KB
testcase_43 AC 108 ms
16,256 KB
testcase_44 AC 108 ms
16,128 KB
testcase_45 AC 109 ms
16,128 KB
testcase_46 AC 110 ms
16,128 KB
testcase_47 AC 109 ms
16,128 KB
testcase_48 AC 108 ms
16,128 KB
testcase_49 AC 206 ms
16,128 KB
testcase_50 AC 204 ms
16,128 KB
testcase_51 AC 202 ms
16,128 KB
testcase_52 AC 206 ms
16,128 KB
testcase_53 AC 204 ms
16,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#include <atcoder/modint>

#include <algorithm>
#include <cassert>
#include <vector>

template <class T>
bool chmax(T &a, const T &b) {
    if (a < b) {
        a = b;
        return true;
    }
    return false;
}

template <class T>
bool chmin(T &a, const T &b) {
    if (a > b) {
        a = b;
        return true;
    }
    return false;
}

template <class T>
T div_floor(T a, T b) {
    if (b < 0) a *= -1, b *= -1;
    return a >= 0 ? a / b : (a + 1) / b - 1;
}

template <class T>
T div_ceil(T a, T b) {
    if (b < 0) a *= -1, b *= -1;
    return a > 0 ? (a - 1) / b + 1 : a / b;
}

template <typename T>
struct CoordComp {
    std::vector<T> v;
    bool sorted;

    CoordComp() : sorted(false) {}

    int size() { return v.size(); }

    void add(T x) { v.push_back(x); }

    void build() {
        std::sort(v.begin(), v.end());

        v.erase(std::unique(v.begin(), v.end()), v.end());
        sorted = true;
    }

    int get_idx(T x) {
        assert(sorted);
        return lower_bound(v.begin(), v.end(), x) - v.begin();
    }

    T &operator[](int i) { return v[i]; }
};


#define For(i, a, b) for (int i = (int)(a); (i) < (int)(b); ++(i))
#define rFor(i, a, b) for (int i = (int)(a)-1; (i) >= (int)(b); --(i))
#define rep(i, n) For(i, 0, n)
#define rrep(i, n) rFor(i, n, 0)
#define fi first
#define se second

using namespace std;

using lint = long long;
using pii = pair<int, int>;
using pll = pair<lint, lint>;

using namespace atcoder;
using mint = modint1000000007;

int main() {
    lint n, m;
    scanf("%lld%lld", &n, &m);
    map<lint, lint> mp;
    auto cmp = [](const pll &p1, const pll &p2) { return p1 > p2; };
    set<pll, decltype(cmp)> S(cmp);
    rep(i, m) {
        lint a;
        scanf("%lld", &a);
        mp[i + 1] = a;
        S.emplace(a, i + 1);
    }

    int q;
    scanf("%d", &q);
    rep(i, q) {
        int t;
        lint x, y;
        scanf("%d%lld%lld", &t, &x, &y);
        if (t == 1) {
            auto tmp = mp[x];
            mp[x] = tmp + y;
            S.erase({tmp, x});
            S.emplace(tmp + y, x);
        } else if (t == 2) {
            auto tmp = mp[x];
            mp[x] = tmp - y;
            S.erase({tmp, x});
            S.emplace(tmp - y, x);
        } else {
            printf("%lld\n", S.begin()->se);
        }
    }
}
0