이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "grader.h"
using namespace std;
void Rescue(int r, int c, int rs, int cs, int expecH){
int maxDist = max(rs - 1, r - rs) + max(cs - 1, c - cs);
vector <pair<int, int>> dist[maxDist + 1];
for(int i = 1; i <= r; i++)
for(int j = 1; j <= c; j++)
dist[abs(i - rs) + abs(j - cs)].push_back({i, j});
int lo = 0, hi = maxDist;
while(lo <= hi){
int mid = (lo + hi) >> 1;
int last = -1;
for(auto p : dist[mid]){
int x, y;
tie(x, y) = p;
last = Measure(x, y);
if (last == expecH)
Pinpoint(x, y);
}
if (last < expecH)
hi = mid - 1;
else
lo = mid + 1;
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |