結果

問題 No.2454 Former < Latter
ユーザー 👑 binapbinap
提出日時 2023-09-01 23:05:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 678 bytes
コンパイル時間 3,347 ms
コンパイル使用メモリ 229,824 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-11 05:09:46
合計ジャッジ時間 4,522 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 WA -
testcase_02 AC 10 ms
6,076 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 10 ms
5,948 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 10 ms
6,076 KB
testcase_12 AC 10 ms
6,084 KB
testcase_13 AC 10 ms
6,080 KB
testcase_14 AC 11 ms
6,080 KB
testcase_15 AC 10 ms
5,376 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 15 ms
5,376 KB
testcase_19 AC 11 ms
5,952 KB
testcase_20 AC 12 ms
5,952 KB
testcase_21 WA -
testcase_22 AC 9 ms
5,376 KB
testcase_23 AC 9 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
#define rep(i,n) for(int i=0;i<n;i++)
using namespace std;
using namespace atcoder;
typedef long long ll;
typedef vector<int> vi;
typedef vector<long long> vl;
typedef vector<vector<int>> vvi;
typedef vector<vector<long long>> vvl;
typedef pair<int,int> P;
typedef long double ld;

void solve(){
	int n;
	cin >> n;
	string s;
	cin >> s;
	vi z = z_algorithm(s);
	int ans = 0;
	rep(p, n){
		if(p == 0) continue;
		int q = n - p;
		if(z[p] >= p){
			ans++;
		}else{
			if(p + z[p] == n){
			}else{
				if(s[z[p]] < s[p + z[p]]) ans++;
			}
		}
	}
	cout << ans << "\n";
}

int main(){
	int t;
	cin >> t;
	rep(i, t) solve();
	return 0;
}
0