結果
問題 | No.2361 Many String Compare Queries |
ユーザー | Kude |
提出日時 | 2023-06-23 22:29:48 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,458 bytes |
コンパイル時間 | 3,145 ms |
コンパイル使用メモリ | 244,232 KB |
実行使用メモリ | 11,144 KB |
最終ジャッジ日時 | 2024-07-01 02:13:40 |
合計ジャッジ時間 | 4,771 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 68 ms
10,156 KB |
testcase_12 | AC | 78 ms
10,028 KB |
testcase_13 | AC | 71 ms
10,152 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
ソースコード
#include<bits/stdc++.h> namespace { #pragma GCC diagnostic ignored "-Wunused-function" #include<atcoder/all> #pragma GCC diagnostic warning "-Wunused-function" using namespace std; using namespace atcoder; #define rep(i,n) for(int i = 0; i < (int)(n); i++) #define rrep(i,n) for(int i = (int)(n) - 1; i >= 0; i--) #define all(x) begin(x), end(x) #define rall(x) rbegin(x), rend(x) template<class T> bool chmax(T& a, const T& b) { if (a < b) { a = b; return true; } else return false; } template<class T> bool chmin(T& a, const T& b) { if (b < a) { a = b; return true; } else return false; } using ll = long long; using P = pair<int,int>; using VI = vector<int>; using VVI = vector<VI>; using VL = vector<ll>; using VVL = vector<VL>; int op(int x, int y) { return min(x, y); } int e() { return 1001001001; } } int main() { ios::sync_with_stdio(false); cin.tie(0); int n, q; cin >> n >> q; string s; cin >> s; VI sa = suffix_array(s); VI lcp = lcp_array(s, sa); segtree<int, op, e> seg(lcp); VI sa_inv(n); rep(i, n) sa_inv[sa[i]] = i; VL acc(n + 1); rep(i, n) acc[i + 1] = acc[i] + n - sa[i]; rep(_, q) { int l, r; cin >> l >> r; l--; int len = r - l; int i = sa_inv[l]; int li = seg.min_left(i, [&](int x) { return x >= len; }); int ri = seg.max_right(i, [&](int x) { return x >= len; }); ll ans = ll(ri - li + 1) * (len - 1); ans += acc[li]; cout << ans << '\n'; } }