結果

問題 No.469 区間加算と一致検索の問題
ユーザー 👑 hos.lyrichos.lyric
提出日時 2019-01-22 17:09:06
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 2,914 ms / 5,000 ms
コード長 2,982 bytes
コンパイル時間 2,710 ms
コンパイル使用メモリ 120,576 KB
実行使用メモリ 214,272 KB
最終ジャッジ日時 2024-10-01 15:44:45
合計ジャッジ時間 56,277 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 170 ms
18,944 KB
testcase_03 AC 16 ms
8,960 KB
testcase_04 AC 18 ms
10,496 KB
testcase_05 AC 23 ms
11,264 KB
testcase_06 AC 24 ms
11,904 KB
testcase_07 AC 26 ms
11,904 KB
testcase_08 AC 27 ms
11,904 KB
testcase_09 AC 11 ms
5,760 KB
testcase_10 AC 23 ms
11,264 KB
testcase_11 AC 8 ms
5,248 KB
testcase_12 AC 29 ms
12,032 KB
testcase_13 AC 17 ms
10,496 KB
testcase_14 AC 6 ms
5,248 KB
testcase_15 AC 8 ms
5,248 KB
testcase_16 AC 26 ms
11,904 KB
testcase_17 AC 22 ms
11,392 KB
testcase_18 AC 25 ms
12,032 KB
testcase_19 AC 4 ms
5,248 KB
testcase_20 AC 30 ms
12,032 KB
testcase_21 AC 6 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 190 ms
31,304 KB
testcase_24 AC 189 ms
31,360 KB
testcase_25 AC 191 ms
31,360 KB
testcase_26 AC 193 ms
31,360 KB
testcase_27 AC 195 ms
31,360 KB
testcase_28 AC 191 ms
31,360 KB
testcase_29 AC 191 ms
31,360 KB
testcase_30 AC 190 ms
31,232 KB
testcase_31 AC 190 ms
31,232 KB
testcase_32 AC 187 ms
31,360 KB
testcase_33 AC 2,852 ms
214,144 KB
testcase_34 AC 2,861 ms
214,144 KB
testcase_35 AC 2,837 ms
214,272 KB
testcase_36 AC 2,878 ms
214,144 KB
testcase_37 AC 2,914 ms
214,016 KB
testcase_38 AC 2,862 ms
214,216 KB
testcase_39 AC 2,851 ms
214,144 KB
testcase_40 AC 2,822 ms
214,256 KB
testcase_41 AC 2,844 ms
214,144 KB
testcase_42 AC 2,813 ms
214,144 KB
testcase_43 AC 2,839 ms
214,144 KB
testcase_44 AC 2,813 ms
214,144 KB
testcase_45 AC 2,819 ms
214,272 KB
testcase_46 AC 2,811 ms
214,144 KB
testcase_47 AC 2,823 ms
214,176 KB
testcase_48 AC 1 ms
5,248 KB
testcase_49 AC 1 ms
5,248 KB
testcase_50 AC 2,846 ms
214,144 KB
testcase_51 AC 2,817 ms
214,016 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, 1000000123, 1000000181];

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