# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
251219 | jimmy123 | Lollipop (POI11_liz) | C++14 | 505 ms | 27896 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <algorithm>
#include <stdio.h>
using namespace std;
char data[1000001];
int location[2000001]={0};
int main(){
int num=0, query=0, cnt=1, pos=0, first_W=-1, last_W=-1;
bool isfirst = true;
//char* data = new char[num+1];
scanf("%d%d", &num, &query);
scanf("%s", data);
for(int i=0;i<num;i++){
if(data[i] == 'W'){
pos += 1;
last_W = pos;
if(isfirst){
first_W = pos;
isfirst = false;
}
}
else
pos += 2;
location[pos] = cnt;
cnt += 1;
}
for(int i=0;i<query;i++){
if(i != 0)
printf("\n");
int range;
scanf("%d", &range);
if(location[range] != 0){
printf("1 %d", location[range]);
continue;
}
if(first_W != -1 && first_W < range){
if(location[first_W+range] != 0){
printf("%d %d", location[first_W]+1, location[first_W+range]);
continue;
}
else if(location[first_W+range-1] != 0){
printf("%d %d", location[first_W-1]+1, location[first_W+range-1]);
continue;
}
}
if(last_W != -1 && last_W > range){
if(location[last_W-range] != 0){
printf("%d %d", location[last_W-range]+1, location[last_W]);
continue;
}
else if(location[last_W-range-1] != 0){
printf("%d %d", location[last_W-range-1]+1, location[last_W-1]);
continue;
}
}
// 找不到解
printf("NIE");
}
//delete []data;
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |