結果
問題 | No.2454 Former < Latter |
ユーザー | hiro71687k |
提出日時 | 2023-09-01 23:11:49 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,252 bytes |
コンパイル時間 | 4,743 ms |
コンパイル使用メモリ | 262,888 KB |
実行使用メモリ | 8,644 KB |
最終ジャッジ日時 | 2024-06-11 05:17:15 |
合計ジャッジ時間 | 6,560 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 517 ms
5,456 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/all> using namespace atcoder; using namespace std; using ll=long long; using ld=long double; ld pie=3.141592653589793; ll mod=(1UL << 61) - 1;; ld inf=10000999999999900; int main(){ ll t; cin >> t; vector<ll>ans; for (ll o = 0; o < t; o++) { ll n; cin >> n; string s; cin >> s; vector<ll>ten(n+100,1); for (ll i = 1; i < ten.size(); i++) { ten[i]=ten[i-1]*997; ten[i]%=mod; } vector<ll>hs(n); hs[0]=s[0]-'a'; for (ll i = 1; i <n; i++) { hs[i]=hs[i-1]*997; hs[i]%=mod; hs[i]+=(s[i]-'a'); hs[i]%=mod; } ll x=0; for (ll i = 1; i*2 < n; i++) { ll y=hs[i-1]; ll z=hs[i*2-1]; z+=mod-(hs[i-1]*ten[i])%mod; z%=mod; if (y==z) { x++; } } for (ll i = 1; i < n; i++) { if (s[i]>s[0]) { x++; } } ans.push_back(x); } for (ll i = 0; i < ans.size(); i++) { cout << ans[i] << endl; } }