# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1032303 | 0npata | 즐거운 행로 (APIO20_fun) | C++17 | 25 ms | 604 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "fun.h"
#include<bits/stdc++.h>
using namespace std;
#define vec vector
const int MXN = 505;
vec<int> tree[MXN];
int depth[MXN];
void dfs1(int u, int p = -1) {
for(int v : tree[u]) {
if(v == p) continue;
depth[v] = depth[u]+1;
dfs1(v, u);
}
}
std::vector<int> createFunTour(int N, int Q) {
for(int i = 0; i<N; i++) {
for(int j = 0; j<N; j++) {
if(i == j) {
continue;
}
if(hoursRequired(i, j) == 1) {
tree[i].push_back(j);
}
}
}
set<int> used;
auto comp_depth = [&](int u) {
depth[u] = 0;
dfs1(u);
};
comp_depth(0);
int x = 0;
for(int i = 0; i<N; i++) {
if(depth[i] > depth[x]) x = i;
}
vec<int> ans(0);
for(int i = 0; i<N; i++) {
comp_depth(x);
for(int i = 0; i<N; i++) {
if(!used.count(i) && depth[i] > depth[x]) x = i;
}
ans.push_back(x);
used.insert(x);
}
assert(used.size() == N);
return ans;
}
컴파일 시 표준 에러 (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... |