QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#697873#9430. Left Shifting 2He_ngWA 4ms3844kbC++201.1kb2024-11-01 16:12:412024-11-01 16:12:42

Judging History

你现在查看的是最新测评结果

  • [2024-11-01 16:12:42]
  • 评测
  • 测评结果:WA
  • 用时:4ms
  • 内存:3844kb
  • [2024-11-01 16:12:41]
  • 提交

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;
        }
        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: 3620kb

input:

3
abccbbbbd
abcde
x

output:

2
0
0

result:

ok 3 lines

Test #2:

score: -100
Wrong Answer
time: 4ms
memory: 3844kb

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 591st lines differ - expected: '2', found: '3'