QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#789114#9430. Left Shifting 2snow_mikumikuWA 2ms3580kbC++14809b2024-11-27 19:18:402024-11-27 19:18:41

Judging History

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

  • [2024-11-27 19:18:41]
  • 评测
  • 测评结果:WA
  • 用时:2ms
  • 内存:3580kb
  • [2024-11-27 19:18:40]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
using LL = long long;

void solve()
{
    string S;
    cin >> S;
    if(S.size() == 2 && S[1] == S[0]) {
        cout << 1 << '\n';
        return;
    }
    int f = 0, ans = 0, cnt = 1, up = 0;
    for(int i = 1; i < S.size(); i++) {
        if(S[i] == S[i - 1]) cnt++;
        else {
            if(!up) up = cnt;
            ans += cnt / 2;
            if(cnt % 2 == 0) f = 1;
            cnt = 1;
        }
    }

    if(cnt % 2 == 0) f = 1;
    ans += cnt / 2;
    if(S.back() == S[0]) {
        if(cnt % 2 == 0 && up % 2 == 0) f = 1;
        else f = 0;
    }

    cout << ans - f << '\n';
}
int main()
{
    ios::sync_with_stdio(0);
    cin.tie(0);
    int t;
    cin >> t;
    while(t--) solve();
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3456kb

input:

3
abccbbbbd
abcde
x

output:

2
0
0

result:

ok 3 lines

Test #2:

score: -100
Wrong Answer
time: 2ms
memory: 3580kb

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'