# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
31528 | minhtung0404 | 어르신 집배원 (BOI14_postmen) | C++14 | 632 ms | 141180 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
const int N = 5e5 + 5;
using namespace std;
set <int> adj[N];
vector <int> mv[N];
int n, m, a, b, cnt;
bool check[N], edge[N];
stack <int> ms;
void dfs(int u){
while (adj[u].size()){
int v = *adj[u].begin();
adj[u].erase(adj[u].begin()); adj[v].erase(u);
dfs(v);
}
if (check[u]){
while (ms.top() != u){
printf("%d ", ms.top());
check[ms.top()] = 0;
ms.pop();
}
printf("%d\n", u);
ms.pop();
check[u] = 0;
}
check[u] = 1;
ms.push(u);
}
int main(){
scanf("%d%d", &n, &m);
for (int i = 0; i < m; i++){
scanf("%d%d", &a, &b);
adj[a].insert(b);
adj[b].insert(a);
}
dfs(1);
}
컴파일 시 표준 에러 (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... |