結果

問題 No.958 たぷりすたべる (回文)
ユーザー risujirohrisujiroh
提出日時 2019-12-21 00:45:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 217 ms / 2,000 ms
コード長 1,469 bytes
コンパイル時間 1,689 ms
コンパイル使用メモリ 173,008 KB
実行使用メモリ 15,384 KB
最終ジャッジ日時 2024-07-18 05:35:44
合計ジャッジ時間 5,868 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 2 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,944 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 1 ms
6,944 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 20 ms
6,940 KB
testcase_28 AC 23 ms
6,944 KB
testcase_29 AC 21 ms
6,944 KB
testcase_30 AC 19 ms
6,944 KB
testcase_31 AC 20 ms
6,940 KB
testcase_32 AC 24 ms
6,940 KB
testcase_33 AC 25 ms
6,940 KB
testcase_34 AC 23 ms
6,940 KB
testcase_35 AC 25 ms
6,944 KB
testcase_36 AC 23 ms
6,944 KB
testcase_37 AC 14 ms
6,940 KB
testcase_38 AC 18 ms
6,940 KB
testcase_39 AC 18 ms
6,940 KB
testcase_40 AC 20 ms
6,940 KB
testcase_41 AC 19 ms
6,944 KB
testcase_42 AC 25 ms
6,940 KB
testcase_43 AC 25 ms
6,940 KB
testcase_44 AC 25 ms
6,940 KB
testcase_45 AC 24 ms
6,944 KB
testcase_46 AC 22 ms
6,940 KB
testcase_47 AC 171 ms
11,900 KB
testcase_48 AC 184 ms
15,384 KB
testcase_49 AC 201 ms
15,260 KB
testcase_50 AC 184 ms
15,384 KB
testcase_51 AC 206 ms
15,384 KB
testcase_52 AC 197 ms
15,380 KB
testcase_53 AC 217 ms
15,260 KB
testcase_54 AC 217 ms
15,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

struct RollingHash {
  static constexpr long long m31 = (1LL << 31) - 1;
  static int mod_m31(long long a) {
    a = (a >> 31) + (a & m31);
    return a >= m31 ? a - m31 : a;
  }
  static long long base[2];
  static vector<int> powb[2];
  vector<int> h[2];
  RollingHash(const string& s) : h{{0}, {0}} {
    for (int k : {0, 1}) {
      for (char c : s) h[k].push_back(mod_m31(h[k].back() * base[k] + c));
      while (powb[k].size() <= s.size())
        powb[k].push_back(mod_m31(powb[k].back() * base[k]));
    }
  }
  int get(int l, int r, int k) const {
    return mod_m31(h[k][r] + (m31 - h[k][l]) * powb[k][r - l]);
  }
  auto get(int l, int r) const { return make_pair(get(l, r, 0), get(l, r, 1)); }
};
long long RollingHash::base[2] = {1095803926, 1410736294};
vector<int> RollingHash::powb[2] = {{1}, {1}};

int main() {
  cin.tie(nullptr);
  ios::sync_with_stdio(false);
  long long n, k, q;
  cin >> n >> k >> q;
  string s;
  cin >> s;
  RollingHash rh(s + s);
  reverse(begin(s), end(s));
  RollingHash rev(s + s);
  while (q--) {
    long long a;
    cin >> a;
    --a;
    long long b = k * n - a - 1;
    int ok = 1, ng = n + 1;
    while (ng - ok > 1) {
      int mid = (ok + ng) / 2;
      (rh.get(a % n, a % n + mid) == rev.get(b % n, b % n + mid) ? ok : ng) = mid;
    }
    long long res = ok < n ? 2 * ok - 1 : k * n;
    res = min(res, 2 * min(k * n - a, a + 1) - 1);
    cout << res << '\n';
  }
}
0