# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
372691 | hoanghq2004 | 산악 구조대 (JOI13_mountain) | C++14 | 9 ms | 2540 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "grader.h"
using namespace std;
void Rescue(int n, int m, int RS, int CS, int X) {
map <int, vector <pair <int, int> > > mp;
vector <pair <int, int> > block[(n + 10) * (m + 10)];
vector <vector <int> > height(n + 10, vector <int> (m + 10, -1));
for (int i = 1; i <= n; ++i) {
for (int j = 1; j <= m; ++j) {
mp[abs(i - RS) + abs(j - CS)].push_back({i, j});
}
}
int sz = 0;
for (auto [id, vcell]: mp) block[sz++] = vcell;
auto ask = [&](int i, int j) {
if (height[i][j] != -1) return height[i][j];
height[i][j] = Measure(i, j);
if (height[i][j] == X) Pinpoint(i, j);
return height[i][j];
};
int L = 0, R = sz - 1;
while (R - L > 1) {
int mid = L + R >> 1;
if (ask(block[mid].front().first, block[mid].front().second) < X) R = mid;
else L = mid;
}
for (auto [i, j]: block[L]) ask(i, j);
for (auto [i, j]: block[R]) ask(i, j);
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |