結果

問題 No.958 たぷりすたべる (回文)
ユーザー pekempeypekempey
提出日時 2019-12-21 11:01:01
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 748 bytes
コンパイル時間 1,510 ms
コンパイル使用メモリ 142,648 KB
実行使用メモリ 9,020 KB
最終ジャッジ日時 2024-06-22 03:57:00
合計ジャッジ時間 6,108 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 1 ms
6,944 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 1 ms
6,944 KB
testcase_19 AC 1 ms
6,940 KB
testcase_20 AC 1 ms
6,940 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 1 ms
6,944 KB
testcase_24 AC 1 ms
6,944 KB
testcase_25 AC 1 ms
6,940 KB
testcase_26 AC 1 ms
6,940 KB
testcase_27 AC 55 ms
6,944 KB
testcase_28 AC 54 ms
6,944 KB
testcase_29 AC 55 ms
6,940 KB
testcase_30 AC 55 ms
6,944 KB
testcase_31 AC 54 ms
6,940 KB
testcase_32 AC 53 ms
6,940 KB
testcase_33 AC 54 ms
6,944 KB
testcase_34 AC 56 ms
6,944 KB
testcase_35 AC 53 ms
6,940 KB
testcase_36 AC 53 ms
6,944 KB
testcase_37 AC 54 ms
6,944 KB
testcase_38 AC 54 ms
6,940 KB
testcase_39 AC 54 ms
6,940 KB
testcase_40 AC 58 ms
6,944 KB
testcase_41 AC 55 ms
6,944 KB
testcase_42 AC 55 ms
6,940 KB
testcase_43 AC 53 ms
6,944 KB
testcase_44 AC 54 ms
6,940 KB
testcase_45 AC 54 ms
6,944 KB
testcase_46 AC 55 ms
6,944 KB
testcase_47 AC 141 ms
6,940 KB
testcase_48 AC 148 ms
7,320 KB
testcase_49 AC 150 ms
8,312 KB
testcase_50 AC 147 ms
8,544 KB
testcase_51 AC 152 ms
8,664 KB
testcase_52 AC 161 ms
9,020 KB
testcase_53 AC 153 ms
8,568 KB
testcase_54 AC 153 ms
8,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio;
import std.algorithm;

int[] manacher(string s) {
  immutable ulong n = s.length;
  int[] rad = new int[n];
  int i = 0;
  int k = 0;
  while (i < n) {
    while (i-k-1>=0 && i+k+1<n && s[i-k-1]==s[i+k+1]) k++;
    rad[i] = k;
    int j = 1;
    k--;
    while (i-j>=0 && rad[i-j]<k) {
      rad[i+j] = rad[i-j];
      j++;
      k--;
    }
    i += j;
  }
  return rad;
}

void main() {
  long N, K, Q;
  readf("%d %d %d\n", &N, &K, &Q);
  string S;
  readf("%s\n", S);
  int[] rad = manacher(S ~ S ~ S ~ S ~ S);
  foreach (_; 0..Q) {
    long A;
    readf("%d\n", &A);
    A--;
    int r = rad[A % N + 2*N];
    if (r >= 2*N) {
      writeln(min(A, N*K-1-A)*2+1);
    } else {
      writeln(min(A, N*K-1-A, r)*2+1);
    }
  }
}
0