# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
49489 | minkank | 어르신 집배원 (BOI14_postmen) | C++17 | 532 ms | 63400 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <set>
#include <stack>
#include <vector>
using namespace std;
typedef pair<int, int> ii;
const int N = 5e5 + 5;
int n, m, st[N], p, ptr[N];
bool check[N], sax[N];
vector<int> s[N];
vector<ii> edge;
void dfs(int u) {
while(ptr[u] >= 0) {
int id = s[u][ptr[u]]; ptr[u]--;
if(sax[id]) continue;
sax[id] = true;
int v; if(edge[id].first == u) v = edge[id].second; else v = edge[id].first;
dfs(v);
}
if(check[u]) {
while(st[p] != u) cout << st[p] << ' ', check[st[p]] = false, p--; p--;
cout << u << '\n';
}
check[u] = 1; ++p; st[p] = u;
}
void get(int &x) {
x = 0;
char c = getchar();
while(c > '9' || c < '0') c = getchar();
while(c >= '0' && c <= '9') x = (x << 3) + (x << 1) + c - '0', c = getchar();
}
int main() {
get(n); get(m);
for(int i = 1; i <= m; ++i) {
int u, v;
get(u); get(v);
s[u].push_back(edge.size()); s[v].push_back(edge.size());
edge.push_back(ii(u, v));
}
for(int i = 1; i <= n; ++i) ptr[i] = s[i].size() - 1;
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... |