結果

問題 No.469 区間加算と一致検索の問題
ユーザー nebukuro09nebukuro09
提出日時 2016-12-19 20:13:58
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 1,479 ms / 5,000 ms
コード長 2,038 bytes
コンパイル時間 1,281 ms
コンパイル使用メモリ 119,424 KB
実行使用メモリ 48,640 KB
最終ジャッジ日時 2024-06-12 05:56:18
合計ジャッジ時間 69,667 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,145 ms
25,728 KB
testcase_01 AC 1,144 ms
25,728 KB
testcase_02 AC 1,150 ms
25,600 KB
testcase_03 AC 1,157 ms
27,264 KB
testcase_04 AC 1,142 ms
27,264 KB
testcase_05 AC 1,143 ms
27,136 KB
testcase_06 AC 1,149 ms
28,672 KB
testcase_07 AC 1,159 ms
28,672 KB
testcase_08 AC 1,177 ms
28,672 KB
testcase_09 AC 1,154 ms
27,008 KB
testcase_10 AC 1,173 ms
26,880 KB
testcase_11 AC 1,158 ms
26,624 KB
testcase_12 AC 1,157 ms
28,800 KB
testcase_13 AC 1,148 ms
27,136 KB
testcase_14 AC 1,144 ms
26,112 KB
testcase_15 AC 1,141 ms
26,880 KB
testcase_16 AC 1,157 ms
28,672 KB
testcase_17 AC 1,162 ms
27,264 KB
testcase_18 AC 1,175 ms
28,800 KB
testcase_19 AC 1,133 ms
25,984 KB
testcase_20 AC 1,174 ms
28,672 KB
testcase_21 AC 1,143 ms
26,496 KB
testcase_22 AC 1,147 ms
25,856 KB
testcase_23 AC 1,254 ms
43,264 KB
testcase_24 AC 1,231 ms
43,136 KB
testcase_25 AC 1,242 ms
42,840 KB
testcase_26 AC 1,223 ms
42,112 KB
testcase_27 AC 1,226 ms
42,752 KB
testcase_28 AC 1,228 ms
42,112 KB
testcase_29 AC 1,257 ms
43,264 KB
testcase_30 AC 1,247 ms
42,240 KB
testcase_31 AC 1,295 ms
43,264 KB
testcase_32 AC 1,263 ms
43,264 KB
testcase_33 AC 1,442 ms
48,512 KB
testcase_34 AC 1,399 ms
48,512 KB
testcase_35 AC 1,416 ms
48,512 KB
testcase_36 AC 1,416 ms
48,512 KB
testcase_37 AC 1,402 ms
47,616 KB
testcase_38 AC 1,390 ms
48,512 KB
testcase_39 AC 1,418 ms
48,512 KB
testcase_40 AC 1,413 ms
48,640 KB
testcase_41 AC 1,400 ms
48,512 KB
testcase_42 AC 1,401 ms
48,512 KB
testcase_43 AC 1,427 ms
48,640 KB
testcase_44 AC 1,437 ms
48,520 KB
testcase_45 AC 1,426 ms
48,128 KB
testcase_46 AC 1,419 ms
48,640 KB
testcase_47 AC 1,479 ms
48,000 KB
testcase_48 AC 1,147 ms
25,600 KB
testcase_49 AC 1,219 ms
25,600 KB
testcase_50 AC 1,407 ms
48,128 KB
testcase_51 AC 1,396 ms
47,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop, core.stdc.stdio;


long powmod(long a, long x, long m) {
    long ret = 1;
    while (x >= 1) {
        if (x % 2 == 1)
            ret = ret * a % m;
        a = a * a % m;
        x /= 2;
    }
    return ret;
}

void main() {
    immutable long[3] MOD = [1000000009, 2000000357, 3000000821];
    immutable long BASE = uniform(0, MOD.reduce!(min));
    auto powsum = new long[][](3, 10^^6+1);
    pragma(inline, true) {
        powsum[0][0] = powsum[1][0] = powsum[2][0] = 1;
        foreach (j; 0..3)
            foreach (i; 0..10^^6)
                powsum[j][i+1] = (powsum[j][i] + powmod(BASE, i+1, MOD[j])) % MOD[j];
    }

    auto s = readln.split.map!(to!int);
    int N = s[0];
    int Q = s[1];
    long L, R, K;

    int[long][] hash_table = new int[long][](3);
    hash_table[0][0] = hash_table[1][0] = hash_table[2][0] = 0;
    long[3] prev = [0, 0, 0];

    foreach (i; 1..Q+1) {
        auto q = readln.split;
        if (q[0] == "!") {
            L = q[1].to!long;
            R = q[2].to!long;
            K = q[3].to!long;
            foreach (j; 0..3) {
                long plus = ((abs(K) * powmod(BASE, L, MOD[j])) % MOD[j] *
                             powsum[j][R-L-1]) % MOD[j];
                if (K >= 0)
                    prev[j] = (prev[j] + plus) % MOD[j];
                else if (plus > prev[j])
                    prev[j] = (prev[j] - plus) % MOD[j] + MOD[j];
                else
                    prev[j] = (prev[j] - plus) % MOD[j];
                if (!(prev[j] in hash_table[j]))
                    hash_table[j][prev[j]] = i;
            }
        }
        else {
            foreach (j; 0..3) {
                if (hash_table[j][prev[j]] == hash_table[(j+1)%3][prev[(j+1)%3]]) {
                    hash_table[j][prev[j]].writeln;
                    break;
                }
            }
        }
    }
}
0