QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#697767 | #9430. Left Shifting 2 | He_ng | WA | 0ms | 3816kb | C++20 | 1.1kb | 2024-11-01 15:41:19 | 2024-11-01 15:41:20 |
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.length();
bool op = false;
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
*/
詳細信息
Test #1:
score: 100
Accepted
time: 0ms
memory: 3612kb
input:
3 abccbbbbd abcde x
output:
2 0 0
result:
ok 3 lines
Test #2:
score: -100
Wrong Answer
time: 0ms
memory: 3816kb
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'