結果
問題 | No.2454 Former < Latter |
ユーザー | srjywrdnprkt |
提出日時 | 2023-07-08 09:42:26 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 872 bytes |
コンパイル時間 | 2,408 ms |
コンパイル使用メモリ | 203,416 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-23 18:07:32 |
合計ジャッジ時間 | 4,646 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 10 ms
5,376 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 | 11 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; template <typename T> vector<int> z_algorithm(T &S){ vector<int> Z(S.size()); Z[0] = S.size(); int i=1, j=0; while(i < S.size()){ while(i+j < S.size() && S[j] == S[i+j]) j++; Z[i] = j; if (j == 0){ i++; continue; } int k=1; while(k < j && k + Z[k] < j){ Z[i+k] = Z[k]; k++; } i += k; j -= k; } return Z; } void solve(){ int N, ans=0, k; string S; cin >> N >> S; vector<int> z = z_algorithm(S); for (int i=1; i<N; i++){ if (i < z[i]) ans++; else if (i == z[i] && i != N-i) ans++; } cout << ans << endl; } int main(){ int T; cin >> T; while(T){ T--; solve(); } return 0; }