結果

問題 No.469 区間加算と一致検索の問題
ユーザー PachicobuePachicobue
提出日時 2017-12-30 23:22:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 1,725 bytes
コンパイル時間 2,600 ms
コンパイル使用メモリ 214,524 KB
実行使用メモリ 24,320 KB
最終ジャッジ日時 2024-12-21 17:09:12
合計ジャッジ時間 7,949 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 4 ms
6,820 KB
testcase_03 AC 6 ms
6,820 KB
testcase_04 AC 6 ms
6,820 KB
testcase_05 AC 6 ms
6,820 KB
testcase_06 AC 7 ms
6,816 KB
testcase_07 AC 8 ms
5,248 KB
testcase_08 AC 9 ms
5,248 KB
testcase_09 AC 5 ms
5,248 KB
testcase_10 AC 7 ms
5,248 KB
testcase_11 AC 4 ms
5,248 KB
testcase_12 AC 9 ms
5,248 KB
testcase_13 AC 6 ms
5,248 KB
testcase_14 AC 3 ms
5,248 KB
testcase_15 AC 4 ms
6,816 KB
testcase_16 AC 9 ms
5,248 KB
testcase_17 AC 7 ms
5,248 KB
testcase_18 AC 7 ms
5,248 KB
testcase_19 AC 3 ms
5,248 KB
testcase_20 AC 10 ms
5,248 KB
testcase_21 AC 3 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 50 ms
6,144 KB
testcase_24 AC 50 ms
6,144 KB
testcase_25 AC 50 ms
6,144 KB
testcase_26 AC 50 ms
6,044 KB
testcase_27 AC 51 ms
6,820 KB
testcase_28 AC 50 ms
6,272 KB
testcase_29 AC 50 ms
5,908 KB
testcase_30 AC 56 ms
6,020 KB
testcase_31 AC 48 ms
6,016 KB
testcase_32 AC 49 ms
6,272 KB
testcase_33 AC 132 ms
24,192 KB
testcase_34 AC 137 ms
24,320 KB
testcase_35 AC 131 ms
24,320 KB
testcase_36 AC 129 ms
24,192 KB
testcase_37 AC 133 ms
24,320 KB
testcase_38 AC 120 ms
22,912 KB
testcase_39 AC 121 ms
22,912 KB
testcase_40 AC 122 ms
22,912 KB
testcase_41 AC 127 ms
22,912 KB
testcase_42 AC 117 ms
23,040 KB
testcase_43 AC 118 ms
22,912 KB
testcase_44 AC 119 ms
22,912 KB
testcase_45 AC 118 ms
22,784 KB
testcase_46 AC 120 ms
22,912 KB
testcase_47 AC 124 ms
22,912 KB
testcase_48 AC 2 ms
5,248 KB
testcase_49 AC 2 ms
5,248 KB
testcase_50 AC 124 ms
22,912 KB
testcase_51 AC 121 ms
22,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define show(x) cerr << #x << " = " << x << endl

using namespace std;
using ll = long long;

template <typename T>
ostream& operator<<(ostream& os, const vector<T>& v)
{
    os << "sz:" << v.size() << "\n[";
    for (const auto& p : v) {
        os << p << ",";
    }
    os << "]\n";
    return os;
}

constexpr ll MOD1 = (ll)1e9 + 7LL;
constexpr ll MOD2 = (ll)1e9 + 9LL;


int main()
{
    cin.tie(0);
    ios::sync_with_stdio(false);

    int N, Q;
    cin >> N >> Q;
    mt19937 mt{random_device{}()};
    uniform_int_distribution<ll> dist1{2, MOD1 - 1};
    uniform_int_distribution<ll> dist2{2, MOD2 - 1};

    const ll base1 = dist1(mt);
    const ll base2 = dist2(mt);
    vector<ll> value1(N, 1);
    vector<ll> value2(N, 1);
    for (int i = 1; i < N; i++) {
        value1[i] = value1[i - 1] * base1;
        value1[i] %= MOD1;
        value2[i] = value2[i - 1] * base2;
        value2[i] %= MOD2;
    }
    ll x1 = 0;
    ll x2 = 0;
    using P = pair<ll, ll>;
    map<P, int> hash;
    hash[{0, 0}] = 0;
    for (int q = 0; q < Q; q++) {
        char c;
        cin >> c;
        if (c == '!') {
            int l, r;
            ll v;
            cin >> l >> r >> v;
            const ll add1 = ((r == N ? 0LL : value1[r] * ((MOD1 - v) % MOD1)) + value1[l] * ((MOD1 + v) % MOD1)) % MOD1;
            const ll add2 = ((r == N ? 0LL : value2[r] * ((MOD2 - v) % MOD2)) + value2[l] * ((MOD2 + v) % MOD2)) % MOD2;
            x1 = (x1 + add1) % MOD1;
            x2 = (x2 + add2) % MOD2;
            if (hash.find({x1, x2}) == hash.end()) {
                hash[{x1, x2}] = q + 1;
            }
        } else {
            cout << hash[{x1, x2}] << endl;
        }
    }

    return 0;
}
0