結果

問題 No.2454 Former < Latter
ユーザー hiro1729hiro1729
提出日時 2023-09-02 06:09:43
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 219 ms / 2,000 ms
コード長 429 bytes
コンパイル時間 3,220 ms
コンパイル使用メモリ 266,892 KB
実行使用メモリ 6,208 KB
最終ジャッジ日時 2024-06-11 13:04:57
合計ジャッジ時間 5,197 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 11 ms
5,948 KB
testcase_03 AC 10 ms
6,084 KB
testcase_04 AC 11 ms
6,208 KB
testcase_05 AC 10 ms
6,084 KB
testcase_06 AC 11 ms
6,092 KB
testcase_07 AC 10 ms
6,080 KB
testcase_08 AC 11 ms
5,376 KB
testcase_09 AC 8 ms
5,376 KB
testcase_10 AC 9 ms
5,376 KB
testcase_11 AC 11 ms
6,008 KB
testcase_12 AC 10 ms
6,076 KB
testcase_13 AC 11 ms
6,208 KB
testcase_14 AC 11 ms
5,952 KB
testcase_15 AC 11 ms
5,376 KB
testcase_16 AC 11 ms
5,376 KB
testcase_17 AC 219 ms
5,376 KB
testcase_18 AC 15 ms
5,376 KB
testcase_19 AC 11 ms
6,080 KB
testcase_20 AC 12 ms
6,080 KB
testcase_21 AC 12 ms
5,376 KB
testcase_22 AC 8 ms
5,376 KB
testcase_23 AC 9 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
	int t; cin >> t;
	while (t--) {
		int n; string s; cin >> n >> s;
		vector<int> z = atcoder::z_algorithm(s);
		int ans = 0;
		for (int i = 1; i < n; i++) {
			if (i <	z[i]) ans++;
			else if (i == z[i]) {
				if (2 * i < n) ans++;
			} else {
				int k = z[i];
				if (i + k < n && s[k] < s[i + k]) ans++;
			}
		}
		cout << ans << '\n';
	}
}
0