結果

問題 No.469 区間加算と一致検索の問題
ユーザー 👑 hos.lyrichos.lyric
提出日時 2019-03-25 07:15:14
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 2,675 ms / 5,000 ms
コード長 2,958 bytes
コンパイル時間 915 ms
コンパイル使用メモリ 121,296 KB
実行使用メモリ 188,448 KB
最終ジャッジ日時 2024-06-13 04:29:17
合計ジャッジ時間 49,572 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 153 ms
17,268 KB
testcase_03 AC 15 ms
8,508 KB
testcase_04 AC 17 ms
10,040 KB
testcase_05 AC 20 ms
10,532 KB
testcase_06 AC 24 ms
11,868 KB
testcase_07 AC 26 ms
13,228 KB
testcase_08 AC 28 ms
12,124 KB
testcase_09 AC 12 ms
6,944 KB
testcase_10 AC 24 ms
11,152 KB
testcase_11 AC 9 ms
6,940 KB
testcase_12 AC 29 ms
13,368 KB
testcase_13 AC 17 ms
9,976 KB
testcase_14 AC 6 ms
6,944 KB
testcase_15 AC 10 ms
6,940 KB
testcase_16 AC 26 ms
11,972 KB
testcase_17 AC 23 ms
11,376 KB
testcase_18 AC 25 ms
11,872 KB
testcase_19 AC 6 ms
6,944 KB
testcase_20 AC 29 ms
13,224 KB
testcase_21 AC 7 ms
6,944 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 199 ms
27,896 KB
testcase_24 AC 200 ms
28,136 KB
testcase_25 AC 203 ms
29,100 KB
testcase_26 AC 203 ms
28,056 KB
testcase_27 AC 200 ms
27,992 KB
testcase_28 AC 203 ms
28,760 KB
testcase_29 AC 204 ms
28,496 KB
testcase_30 AC 202 ms
29,064 KB
testcase_31 AC 203 ms
28,636 KB
testcase_32 AC 206 ms
28,012 KB
testcase_33 AC 2,647 ms
186,408 KB
testcase_34 AC 2,627 ms
185,572 KB
testcase_35 AC 2,613 ms
187,152 KB
testcase_36 AC 2,641 ms
185,508 KB
testcase_37 AC 2,625 ms
186,840 KB
testcase_38 AC 2,593 ms
185,404 KB
testcase_39 AC 2,580 ms
185,952 KB
testcase_40 AC 2,592 ms
184,196 KB
testcase_41 AC 2,675 ms
187,520 KB
testcase_42 AC 2,572 ms
188,448 KB
testcase_43 AC 2,568 ms
184,840 KB
testcase_44 AC 2,573 ms
185,220 KB
testcase_45 AC 2,566 ms
186,788 KB
testcase_46 AC 2,560 ms
186,240 KB
testcase_47 AC 2,596 ms
187,356 KB
testcase_48 AC 1 ms
6,944 KB
testcase_49 AC 2 ms
6,944 KB
testcase_50 AC 2,570 ms
187,260 KB
testcase_51 AC 2,568 ms
186,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class EOFException : Throwable { this() { super("EOF"); } }
string[] tokens;
string readToken() { for (; tokens.empty; ) { if (stdin.eof) { throw new EOFException; } tokens = readln.split; } auto token = tokens.front; tokens.popFront; return token; }
int readInt() { return readToken.to!int; }
long readLong() { return readToken.to!long; }
real readReal() { return readToken.to!real; }

void chmin(T)(ref T t, in T f) { if (t > f) t = f; }
void chmax(T)(ref T t, in T f) { if (t < f) t = f; }

int binarySearch(T)(in T[] as, in bool delegate(T) test) { int low = -1, upp = cast(int)(as.length); for (; low + 1 < upp; ) { int mid = (low + upp) >> 1; (test(as[mid]) ? low : upp) = mid; } return upp; }
int lowerBound(T)(in T[] as, in T val) { return as.binarySearch((T a) => (a < val)); }
int upperBound(T)(in T[] as, in T val) { return as.binarySearch((T a) => (a <= val)); }


enum long[] P = [1000000007, 1000000009, 1000000021, 1000000033, 1000000087, 1000000093, 1000000097, 1000000103];

int N, Q;
string[] T;
int[] L, R;
long[] K;

void main() {
  auto BASE = new long[P.length];
  BASE[0] = 314159265L;
  foreach (h; 1 .. P.length) {
    BASE[h] = (BASE[h - 1] * 123456789L) % 999999937L;
  }
  
  try {
    for (; ; ) {
      N = readInt();
      Q = readInt();
      T = new string[Q];
      L = new int[Q];
      R = new int[Q];
      K = new long[Q];
      foreach (q; 0 .. Q) {
        T[q] = readToken();
        if (T[q] == "!") {
          L[q] = readInt();
          R[q] = readInt();
          K[q] = readInt();
        }
      }
      
      auto a = new long[][](P.length, N);
      auto b = new long[][](P.length, N + 1);
      foreach (h; 0 .. P.length) {
        a[h][0] = 1;
        foreach (i; 1 .. N) {
          a[h][i] = (a[h][i - 1] * BASE[h]) % P[h];
        }
        foreach (i; 0 .. N) {
          b[h][i + 1] = (b[h][i] + a[h][i]) % P[h];
        }
      }
      
      auto hs = new long[][](Q + 1, P.length);
      int[][long] qs;
      qs[0] ~= 0;
      foreach (q; 0 .. Q) {
        switch (T[q]) {
          case "!": {
            foreach (h; 0 .. P.length) {
              hs[q + 1][h] = (hs[q][h] + (b[h][R[q]] - b[h][L[q]]) * K[q]) % P[h];
              if (hs[q + 1][h] < 0) {
                hs[q + 1][h] += P[h];
              }
            }
            qs[hs[q + 1][0]] ~= q + 1;
          } break;
          case "?": {
            int ans = -1;
            foreach (qq; qs[hs[q][0]]) {
              if (hs[qq] == hs[q]) {
                ans = qq;
                break;
              }
            }
            writeln(ans);
            hs[q + 1][] = hs[q][];
          } break;
          default: assert(false);
        }
        debug {
          writeln(hs[q + 1]);
        }
      }
    }
  } catch (EOFException e) {
  }
}
0