結果
問題 | No.2454 Former < Latter |
ユーザー | ochiaigawa |
提出日時 | 2023-09-01 22:17:39 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 759 bytes |
コンパイル時間 | 2,999 ms |
コンパイル使用メモリ | 221,604 KB |
実行使用メモリ | 10,840 KB |
最終ジャッジ日時 | 2024-06-11 04:09:08 |
合計ジャッジ時間 | 4,027 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 15 ms
7,128 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 15 ms
6,996 KB |
testcase_12 | AC | 17 ms
7,124 KB |
testcase_13 | WA | - |
testcase_14 | AC | 14 ms
7,064 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 43 ms
6,940 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
ソースコード
#include <bits/stdc++.h> #include <atcoder/string> using namespace std; void solve() { int N; cin >> N; string S; cin >> S; vector<int> sa = atcoder::suffix_array(S); vector<int> z = atcoder::z_algorithm(S); int ans = 0; for(int i = 0; i < N; i++) { if(sa[i] == 0) { ans += N - 1 - i; break; } int u = z[sa[i]]; if(u + sa[i] == N) { if(u > N / 2) { ans++; } } else if(u > 0 && u + sa[i] < N) { if(sa[i] < u) { if(S[sa[i]] < S[u + sa[i]]) { ans++; } } else { ans++; } } } cout << ans << '\n'; } int main() { cin.tie(0); cout.tie(0); ios::sync_with_stdio(false); int T; cin >> T; while(T--) { solve(); } return 0; }