結果

問題 No.469 区間加算と一致検索の問題
ユーザー 👑 hos.lyrichos.lyric
提出日時 2019-03-25 07:13:01
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 2,924 ms / 5,000 ms
コード長 2,970 bytes
コンパイル時間 1,064 ms
コンパイル使用メモリ 121,024 KB
実行使用メモリ 202,472 KB
最終ジャッジ日時 2024-06-13 04:27:47
合計ジャッジ時間 56,085 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 171 ms
18,240 KB
testcase_03 AC 15 ms
8,984 KB
testcase_04 AC 18 ms
11,072 KB
testcase_05 AC 21 ms
13,092 KB
testcase_06 AC 25 ms
12,956 KB
testcase_07 AC 25 ms
11,896 KB
testcase_08 AC 29 ms
12,024 KB
testcase_09 AC 13 ms
6,944 KB
testcase_10 AC 24 ms
11,324 KB
testcase_11 AC 8 ms
6,944 KB
testcase_12 AC 30 ms
11,948 KB
testcase_13 AC 17 ms
10,764 KB
testcase_14 AC 6 ms
6,944 KB
testcase_15 AC 11 ms
6,940 KB
testcase_16 AC 27 ms
13,564 KB
testcase_17 AC 23 ms
11,392 KB
testcase_18 AC 24 ms
11,876 KB
testcase_19 AC 5 ms
6,940 KB
testcase_20 AC 29 ms
11,948 KB
testcase_21 AC 8 ms
6,944 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 212 ms
27,984 KB
testcase_24 AC 212 ms
28,840 KB
testcase_25 AC 212 ms
28,640 KB
testcase_26 AC 210 ms
29,720 KB
testcase_27 AC 213 ms
28,880 KB
testcase_28 AC 211 ms
28,104 KB
testcase_29 AC 213 ms
29,156 KB
testcase_30 AC 213 ms
27,980 KB
testcase_31 AC 210 ms
29,132 KB
testcase_32 AC 210 ms
28,800 KB
testcase_33 AC 2,924 ms
202,472 KB
testcase_34 AC 2,908 ms
200,008 KB
testcase_35 AC 2,892 ms
200,140 KB
testcase_36 AC 2,899 ms
199,704 KB
testcase_37 AC 2,898 ms
199,592 KB
testcase_38 AC 2,857 ms
199,280 KB
testcase_39 AC 2,868 ms
202,020 KB
testcase_40 AC 2,852 ms
199,228 KB
testcase_41 AC 2,856 ms
199,732 KB
testcase_42 AC 2,867 ms
199,344 KB
testcase_43 AC 2,866 ms
202,308 KB
testcase_44 AC 2,856 ms
199,388 KB
testcase_45 AC 2,891 ms
200,040 KB
testcase_46 AC 2,877 ms
200,492 KB
testcase_47 AC 2,887 ms
200,504 KB
testcase_48 AC 2 ms
6,940 KB
testcase_49 AC 1 ms
6,940 KB
testcase_50 AC 2,869 ms
199,904 KB
testcase_51 AC 2,881 ms
200,880 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];

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