# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
240495 | karma | 어르신 집배원 (BOI14_postmen) | C++14 | 487 ms | 44792 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#pragma GCC optimize("O3,unroll-loops")
#pragma GCC target("avx,avx2,fma")
#define pb emplace_back
#define ll long long
#define fi first
#define se second
#define mp make_pair
//#define int int64_t
using namespace std;
const int N = int(5e5) + 10;
typedef pair<int, int> pii;
struct TEdge {
int u, v;
bool del;
} e[N];
int n, m, vis[N], ss[N], st[N], cnts, cntt;
int path[N], cp, u, id;
vector<vector<int>> adj;
int32_t main() {
ios_base::sync_with_stdio(0);
cin.tie(0), cout.tie(0);
#define Task "test"
if(fopen(Task".inp", "r")) {
freopen(Task".inp", "r", stdin);
freopen(Task".out", "w", stdout);
}
cin >> n >> m; adj.resize(n + 1);
for(int i = 1; i <= m; ++i) {
cin >> e[i].u >> e[i].v;
adj[e[i].u].pb(i);
adj[e[i].v].pb(i);
}
path[++cp] = 1;
do {
u = path[cp];
while(adj[u].size() && e[adj[u].back()].del) adj[u].pop_back();
if(adj[u].size()) {
id = adj[u].back();
adj[u].pop_back();
e[id].del = 1;
path[++cp] = e[id].u ^ e[id].v ^ u;
} else {
st[++cntt] = u;
--cp;
}
} while(cp > 0);
while(cntt) {
u = st[cntt];
if(vis[u]) {
while(1) {
vis[ss[cnts]] = 0;
cout << ss[cnts] << ' ';
if(ss[cnts --] == u) break;
}
cout << '\n';
}
vis[u] = 1;
ss[++cnts] = u;
--cntt;
}
}
컴파일 시 표준 에러 (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... |