結果
問題 | No.2361 Many String Compare Queries |
ユーザー | hitonanode |
提出日時 | 2023-06-23 23:43:52 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 166 ms / 2,500 ms |
コード長 | 2,122 bytes |
コンパイル時間 | 2,366 ms |
コンパイル使用メモリ | 156,764 KB |
実行使用メモリ | 18,000 KB |
最終ジャッジ日時 | 2024-07-01 03:31:54 |
合計ジャッジ時間 | 4,599 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 158 ms
18,000 KB |
testcase_09 | AC | 166 ms
17,976 KB |
testcase_10 | AC | 154 ms
17,944 KB |
testcase_11 | AC | 137 ms
16,556 KB |
testcase_12 | AC | 165 ms
17,964 KB |
testcase_13 | AC | 151 ms
17,832 KB |
testcase_14 | AC | 44 ms
12,716 KB |
testcase_15 | AC | 76 ms
13,096 KB |
ソースコード
#include <algorithm> #include <iostream> #include <map> #include <numeric> #include <string> #include <utility> #include <vector> using namespace std; using lint = long long; using pint = pair<int, int>; #define FOR(i, begin, end) for (int i = (begin), i##_end_ = (end); i < i##_end_; i++) #define IFOR(i, begin, end) for(int i=(end)-1,i##_begin_=(begin);i>=i##_begin_;i--) #define REP(i, n) FOR(i,0,n) #define IREP(i, n) IFOR(i,0,n) #include <atcoder/string> #include <atcoder/segtree> int op1(int l, int r) { return min(l, r); } int e1() { return 1 << 30; } int main() { cin.tie(nullptr), ios::sync_with_stdio(false); int N, Q; string S; cin >> N >> Q >> S; auto sa = atcoder::suffix_array(S); auto lcp = atcoder::lcp_array(S, sa); lcp.push_back(0); vector<lint> rcs(N); vector<pint> st; st.emplace_back(N - 1, 0); IREP(i, N - 1) { while (st.back().second > lcp.at(i)) st.pop_back(); rcs.at(i) = rcs.at(st.back().first) + lint(st.back().first - i) * lcp.at(i); st.emplace_back(i, lcp.at(i)); } vector<int> sainv(N, -1); REP(i, N) sainv.at(sa.at(i)) = i; vector<lint> cs(N + 1); REP(i, N) cs.at(i + 1) = cs.at(i) + (N - sa.at(i)); atcoder::segtree<int, op1, e1> lcptree(lcp); map<pint, lint> memo; while (Q--) { int l, r; cin >> l >> r; --l; if (memo.count(pint(l, r))) { cout << memo.at(pint(l, r)) << '\n'; continue; } int len = r - l; int x = sainv.at(l); int b = lcptree.max_right(x, [&](int v) { return v >= len; }); int a = lcptree.min_left(x, [&](int v) { return v >= len; }); lint ret = cs.at(a) + lint(b - a + 1) * (len - 1); int h = len - 1; while (b < N and h) { int bnxt = lcptree.max_right(b, [&](int v) { return v >= h; }); ret += lint(h) * (bnxt - b); b = bnxt; if (b < N) { ret += rcs.at(b); break; } } memo[pint(l, r)] = ret; cout << ret << '\n'; } }