이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int n, k;
int main () {
cin >> n >> k;
int c[2];
c[0] = c[1] = k;
string s;
cin >> s;
int l = 0, r = n-1;
int turn = 0;
while(l <= r && c[0] > 0 && c[1] > 0) {
if(s[l] == 'P') {
l++;
}
else if(s[r] == 'P') {
r--;
}
else {
c[turn]--;
int t1, t2;
t1 = t2 = 0;
while(s[l + t1] != 'P' && (t1 + 1) < n-1) {
t1++;
}
while(s[r-t2]!= 'P' && (t2-1) > 0) {
t2++;
}
if(t1 >= t2) {
l++;
}
else {
r--;
}
}
turn ^=1;
}
if(c[0] > 0) {
cout << "DA" << endl;
}
else {
cout << "NE" << endl;
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |