QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#152988 | #5647. Another Wine Tasting Event | Nicolas125841 | WA | 9ms | 6260kb | C++17 | 676b | 2023-08-29 06:35:07 | 2023-08-29 06:35:07 |
Judging History
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