結果

問題 No.765 ukuku 2
ユーザー 👑 hos.lyrichos.lyric
提出日時 2019-03-25 10:13:09
言語 D
(dmd 2.106.1)
結果
TLE  
実行時間 -
コード長 3,119 bytes
コンパイル時間 883 ms
コンパイル使用メモリ 120,244 KB
実行使用メモリ 22,952 KB
最終ジャッジ日時 2024-06-13 04:31:14
合計ジャッジ時間 48,977 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
11,292 KB
testcase_01 AC 71 ms
10,076 KB
testcase_02 AC 72 ms
9,716 KB
testcase_03 AC 73 ms
9,896 KB
testcase_04 AC 72 ms
10,188 KB
testcase_05 AC 72 ms
10,564 KB
testcase_06 AC 73 ms
9,864 KB
testcase_07 AC 72 ms
10,256 KB
testcase_08 AC 71 ms
10,776 KB
testcase_09 AC 73 ms
10,324 KB
testcase_10 AC 73 ms
10,632 KB
testcase_11 AC 75 ms
11,516 KB
testcase_12 AC 75 ms
10,424 KB
testcase_13 AC 73 ms
9,984 KB
testcase_14 AC 73 ms
12,300 KB
testcase_15 AC 73 ms
10,484 KB
testcase_16 AC 76 ms
10,716 KB
testcase_17 AC 72 ms
9,752 KB
testcase_18 AC 75 ms
10,176 KB
testcase_19 AC 74 ms
10,836 KB
testcase_20 AC 74 ms
9,832 KB
testcase_21 AC 70 ms
10,704 KB
testcase_22 AC 74 ms
10,412 KB
testcase_23 AC 72 ms
9,916 KB
testcase_24 AC 73 ms
10,128 KB
testcase_25 AC 73 ms
11,408 KB
testcase_26 AC 72 ms
9,880 KB
testcase_27 AC 74 ms
10,352 KB
testcase_28 AC 74 ms
10,896 KB
testcase_29 AC 76 ms
10,000 KB
testcase_30 AC 1,685 ms
21,380 KB
testcase_31 AC 1,656 ms
20,804 KB
testcase_32 AC 1,424 ms
19,512 KB
testcase_33 AC 2,860 ms
22,708 KB
testcase_34 AC 2,838 ms
22,452 KB
testcase_35 AC 2,307 ms
22,576 KB
testcase_36 AC 2,317 ms
22,588 KB
testcase_37 TLE -
testcase_38 TLE -
testcase_39 AC 2,994 ms
22,612 KB
testcase_40 AC 1,706 ms
20,360 KB
testcase_41 AC 1,902 ms
21,564 KB
testcase_42 AC 1,966 ms
22,220 KB
testcase_43 AC 1,936 ms
21,180 KB
testcase_44 AC 1,820 ms
21,564 KB
testcase_45 AC 2,298 ms
22,168 KB
testcase_46 AC 1,824 ms
21,132 KB
testcase_47 AC 2,044 ms
21,908 KB
testcase_48 AC 1,982 ms
21,468 KB
testcase_49 AC 2,017 ms
21,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.conv, std.functional, 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; }

bool chmin(T)(ref T t, in T f) { if (t > f) { t = f; return true; } else { return false; } }
bool chmax(T)(ref T t, in T f) { if (t < f) { t = f; return true; } else { return false; } }

int binarySearch(alias pred, T)(in T[] as) { int lo = -1, hi = cast(int)(as.length); for (; lo + 1 < hi; ) { const mid = (lo + hi) >> 1; (unaryFun!pred(as[mid]) ? hi : lo) = mid; } return hi; }
int lowerBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a >= val)); }
int upperBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a > val)); }


enum long[] P = [1000000007, 1000000009, 1000000021, 1000000033];
enum LIM = 2 * 10^^5;

int N;
string S;

void main() {
  auto BASE = new long[P.length];
  BASE[0] = 314159265L;
  foreach (h; 1 .. P.length) {
    BASE[h] = (BASE[h - 1] * 123456789L) % 999999937L;
  }
  auto BB = new long[][](P.length, LIM + 1);
  foreach (h; 0 .. P.length) {
    BB[h][0] = 1;
    foreach (i; 0 .. LIM) {
      BB[h][i + 1] = (BB[h][i] * BASE[h]) % P[h];
    }
  }
  
  try {
    for (; ; ) {
      S = readToken();
      N = cast(int)(S.length);
      auto sum0 = new long[][](P.length, N + 1);
      auto sum1 = new long[][](P.length, N + 1);
      foreach (h; 0 .. P.length) {
        foreach (i; 0 .. N) {
          sum0[h][i + 1] = (sum0[h][i] + S[i] * BB[h][i]) % P[h];
          sum1[h][i + 1] = (sum1[h][i] + S[i] * BB[h][N - i]) % P[h];
        }
      }
      int calc(int l, int r) {
        int lo = 0, hi = min(l + 1, N - r) + 1;
        for (; lo + 1 < hi; ) {
          const mid = (lo + hi) / 2;
          bool ok = true;
          foreach (h; 0 .. P.length) {
            const tmpL = (sum0[h][l + 1] - sum0[h][l + 1 - mid]) * BB[h][N - r];
            const tmpR = (sum1[h][r + mid] - sum1[h][r]) * BB[h][l];
            if ((tmpL - tmpR) % P[h] != 0) {
              ok = false;
              break;
            }
          }
          (ok ? lo : hi) = mid;
        }
        debug {
          writeln("calc ", l, " ", r, " = ", lo);
        }
        return lo;
      }
      int ans;
      foreach (i; 0 .. N) {
        foreach (s; 0 .. 2) {
          if (i + s < N) {
            const int a = calc(i, i + s);
            chmax(ans, 2 * a - 1 + s - 1);
            if (0 <= i - a) {
              chmax(ans, 2 * a - 1 + s + 2 * calc(i - a - 1, i + s + a));
            }
            if (i + s + a < N) {
              chmax(ans, 2 * a - 1 + s + 2 * calc(i - a, i + s + a + 1));
            }
          }
        }
      }
      writeln(ans);
    }
  } catch (EOFException e) {
  }
}
0