結果

問題 No.469 区間加算と一致検索の問題
ユーザー nebukuro09nebukuro09
提出日時 2016-12-19 19:37:45
言語 D
(dmd 2.106.1)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,491 bytes
コンパイル時間 864 ms
コンパイル使用メモリ 118,400 KB
実行使用メモリ 17,024 KB
最終ジャッジ日時 2024-06-12 05:53:22
合計ジャッジ時間 28,232 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 420 ms
9,984 KB
testcase_01 AC 421 ms
9,984 KB
testcase_02 AC 421 ms
10,112 KB
testcase_03 AC 424 ms
11,264 KB
testcase_04 AC 428 ms
11,392 KB
testcase_05 AC 426 ms
11,520 KB
testcase_06 AC 427 ms
12,288 KB
testcase_07 AC 428 ms
12,288 KB
testcase_08 AC 429 ms
12,416 KB
testcase_09 AC 427 ms
10,880 KB
testcase_10 AC 425 ms
11,776 KB
testcase_11 AC 424 ms
10,752 KB
testcase_12 AC 431 ms
12,544 KB
testcase_13 AC 425 ms
11,392 KB
testcase_14 AC 422 ms
10,368 KB
testcase_15 AC 424 ms
10,752 KB
testcase_16 AC 429 ms
12,416 KB
testcase_17 AC 428 ms
11,648 KB
testcase_18 AC 431 ms
12,160 KB
testcase_19 AC 422 ms
10,496 KB
testcase_20 AC 430 ms
12,416 KB
testcase_21 AC 422 ms
10,624 KB
testcase_22 AC 419 ms
10,112 KB
testcase_23 AC 482 ms
16,896 KB
testcase_24 AC 481 ms
16,896 KB
testcase_25 AC 481 ms
17,024 KB
testcase_26 AC 480 ms
16,768 KB
testcase_27 AC 481 ms
16,896 KB
testcase_28 AC 482 ms
17,024 KB
testcase_29 AC 480 ms
16,896 KB
testcase_30 AC 482 ms
16,896 KB
testcase_31 WA -
testcase_32 AC 481 ms
17,024 KB
testcase_33 AC 575 ms
16,896 KB
testcase_34 AC 577 ms
17,024 KB
testcase_35 AC 570 ms
16,768 KB
testcase_36 AC 575 ms
16,896 KB
testcase_37 AC 570 ms
16,896 KB
testcase_38 AC 572 ms
17,024 KB
testcase_39 AC 569 ms
16,868 KB
testcase_40 AC 568 ms
16,972 KB
testcase_41 AC 567 ms
16,916 KB
testcase_42 AC 568 ms
16,768 KB
testcase_43 AC 568 ms
17,024 KB
testcase_44 AC 568 ms
16,892 KB
testcase_45 AC 571 ms
17,016 KB
testcase_46 AC 569 ms
16,808 KB
testcase_47 AC 567 ms
16,768 KB
testcase_48 AC 419 ms
9,984 KB
testcase_49 AC 419 ms
9,984 KB
testcase_50 WA -
testcase_51 AC 567 ms
17,008 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) {
    a %= 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 MOD = 2000000357;
    immutable long BASE = uniform(0, MOD);
    auto powsum = new long[](10^^6+1);
    pragma(inline, true) {
        powsum[0] = 1;
        foreach (i; 0..10^^6)
            powsum[i+1] = (powsum[i] + powmod(BASE, i+1, MOD)) % MOD;
    }

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

    int[long] hash_table;
    hash_table[0] = 0;
    long prev = 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;
            long plus = ((abs(K) * powmod(BASE, L, MOD)) % MOD * powsum[R-L-1]) % MOD;
            if (K >= 0)
                prev = (prev + plus) % MOD;
            else if (plus > prev)
                prev = (prev - plus) % MOD + MOD;
            else
                prev = (prev - plus) % MOD;
            if (!(prev in hash_table))
                hash_table[prev] = i;
        }
        else {
            hash_table[prev].writeln;
        }
    }
}
0