# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
227168 | tushar_2658 | 어르신 집배원 (BOI14_postmen) | C++14 | 23 ms | 23808 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "bits/stdc++.h"
using namespace std;
const int maxn = 500005;
multiset<int> edges[maxn];
vector<int> path;
void dfs(int x){
while(!edges[x].empty()){
int i = *edges[x].begin();
edges[x].erase(edges[x].find(i));
edges[i].erase(edges[i].find(x));
dfs(i);
}
path.push_back(x);
}
int main(int argc, char const *argv[])
{
// freopen("in.txt", "r", stdin);
int n, m;
scanf("%d %d", &n, &m);
for(int i = 0; i < m; ++i){
int x, y;
scanf("%d %d", &x, &y);
edges[x].insert(y);
edges[y].insert(x);
}
dfs(1);
path.pop_back();
int sz = path.size();
for(int i = 0; i < sz; ++i){
printf("%d ", path[i]);
}
return 0;
}
컴파일 시 표준 에러 (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... |