QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#697863 | #9430. Left Shifting 2 | He_ng | WA | 2ms | 3676kb | C++20 | 1.1kb | 2024-11-01 16:09:09 | 2024-11-01 16:09:11 |
Judging History
answer
#include <bits/stdc++.h>
const int P = 998244353;
typedef long long ll;
#define rep(i, x, y) for (int i = (x); i <= (y); i++)
using namespace std;
void solve()
{
string s;
cin >> s;
int n = s.size();
int cnt1 = 0;
s = "!" + s;
string x;
rep(i, 1, n)
{
int pos = i;
while (pos <= n && s[pos] == s[i])
pos++;
int cnt = pos - i;
if ((cnt % 2 == 0) && (cnt >= 2))
{
cnt1 = i;
break;
}
i = pos - 1;
}
if (cnt1)
{
x = s.substr(cnt1 + 1);
x += s.substr(1, cnt1);
x = "!" + x;
}
else
x = s;
int ans = 0;
rep(i, 1, n)
{
int pos = i;
while ((pos <= n) && x[pos] == x[i])
pos++;
int cnt = pos - i;
ans += cnt / 2;
i = pos - 1;
}
cout << ans << endl;
return;
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
int t = 1;
cin >> t;
while (t--)
solve();
return 0;
}
/*
3
abccbbbbd
abcde
x
*/
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3676kb
input:
3 abccbbbbd abcde x
output:
2 0 0
result:
ok 3 lines
Test #2:
score: -100
Wrong Answer
time: 2ms
memory: 3644kb
input:
5000 lfpbavjsmppdppkfwnyfmbdhptdswsoulrbhyjh cfliuqnynejgnxolzbdoztclzbozqomvioszk eiivcoqoymonrqgrjdtkts mdcvservaxcbioopfungsgkiftchwlmtbzqgaraovjknsgiegkvdbolmeunvrxrpscnf ujeqtidwtoikkqtygo llma qjfvgwrdhaazejsfgilnpmmhkefndzvyon kzwwpdpbrudqmwmjscllnnjyoepxophcoopvfepikouinuxx vftculoorxskpkxoz...
output:
1 0 0 0 0 0 1 4 0 0 1 1 1 1 1 3 1 0 5 6 0 0 5 2 0 1 3 2 0 3 0 1 0 1 1 0 1 4 1 3 1 0 1 5 3 0 3 0 0 1 8 1 0 6 1 2 0 1 0 0 4 1 2 4 3 1 3 2 3 1 2 1 0 0 2 0 2 2 0 4 0 5 5 0 3 0 4 1 0 2 1 0 2 0 1 6 1 2 1 3 3 3 5 2 3 0 3 5 1 3 0 0 3 0 4 5 3 2 1 1 0 0 2 0 1 1 3 3 3 1 2 0 1 1 4 3 1 3 1 1 1 2 0 1 2 0 4 0 1 1 ...
result:
wrong answer 2172nd lines differ - expected: '1', found: '2'