이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "rail.h"
#include<bits/stdc++.h>
using namespace std;
int dist[5005][5005];
int query(int i, int j) {
if (dist[i][j]) {
return dist[i][j];
}
dist[i][j] = getDistance(i, j);
return dist[i][j];
}
void findLocation(int n, int f, int loc[], int st[]) {
int l = 0, r;
loc[0] = f;
st[0] = 1;
if (n == 1) {
return;
}
vector<pair<int, int>> ord;
for (int i = 1; i < n; i++) {
ord.push_back({query(0, i), i});
}
sort(ord.rbegin(), ord.rend());
r = ord.back().second;
loc[r] = loc[0]+ord.back().first;
st[r] = 2;
ord.pop_back();
while(!ord.empty()) {
auto [_, i] = ord.back();
ord.pop_back();
int ld = query(l, i), rd = query(r, i);
if (rd > ld) {
loc[i] = loc[l]+ld;
st[i] = 2;
} else {
loc[i] = loc[r]-rd;
st[i] = 1;
}
}
}
# | 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... |