이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "grader.h"
#include <stdio.h>
void Rescue(int R, int C, int RS, int CS, int X) {
for(int x = 1, y = CS; x <= RS && 1 <= y;) {
const int ret = Measure(x, y); if(X == ret) { Pinpoint(x, y); return; }
if(ret < X) x++; else y--;
}
for(int x = 1, y = CS+1; x <= RS && y <= C;) {
const int ret = Measure(x, y); if(X == ret) { Pinpoint(x, y); return; }
if(ret < X) x++; else y++;
}
for(int x = R, y = CS; RS < x && 1 <= y;) {
const int ret = Measure(x, y); if(X == ret) { Pinpoint(x, y); return; }
if(ret < X) x--; else y--;
}
for(int x = R, y = CS+1; RS < x && y <= C;) {
const int ret = Measure(x, y); if(X == ret) { Pinpoint(x, y); return; }
if(ret < X) x--; else y++;
}
return;
}
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |