QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#152988#5647. Another Wine Tasting EventNicolas125841WA 9ms6260kbC++17676b2023-08-29 06:35:072023-08-29 06:35:07

Judging History

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

  • [2023-08-29 06:35:07]
  • 评测
  • 测评结果:WA
  • 用时:9ms
  • 内存:6260kb
  • [2023-08-29 06:35:07]
  • 提交

answer

#include <bits/stdc++.h>

using namespace std;

int main(){
    cin.tie(NULL)->sync_with_stdio(false);

    int n;
    cin >> n;

    string s;
    cin >> s;

    int minWhite = 2 * n - 1;
    int white = 0;
    queue<char> wines;

    for(int i = 0; i < n; i++){
        wines.push(s[i]);

        if(s[i] == 'W')
            white++;
    }

    minWhite = white;

    for(int i = n; i < 2 * n - 1; i++){
        wines.push(s[i]);

        if(s[i] == 'W')
            white++;

        if(wines.front() == 'W')
            white--;

        wines.pop();

        minWhite = min(minWhite, white);
    }

    cout << minWhite << "\n";
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

5
RWWRRRWWW

output:

2

result:

ok At least n intervals

Test #2:

score: 0
Accepted
time: 0ms
memory: 3400kb

input:

1
R

output:

0

result:

ok At least n intervals

Test #3:

score: -100
Wrong Answer
time: 9ms
memory: 6260kb

input:

1000000
WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW...

output:

999088

result:

wrong answer Not enough intervals