Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
100001 陈志轩 骑马修栅栏 C++ 通过 100 2 MS 3784 KB 1102 2023-08-24 11:23:42

Tests(8/8):


#include<bits/stdc++.h> #define int long long using namespace std; namespace Fast{ inline int fr(){ int x = 0,f = 1; char c = getchar(); while (c < '0' || c > '9'){ if (c == '-'){ f = -1; } c = getchar(); } while (c >= '0' && c <= '9'){ x = (x << 1) + (x << 3) + (c ^ 48); c = getchar(); } return x * f; } inline void fw(int x){ if (x < 0){ x = -x; putchar('-'); } if (x > 9){ fw(x / 10); } putchar(x % 10 + 48); } } using namespace Fast; const int maxn = 505; int n,mp[1145][1145],tag[114514]; stack <int> s; void dfs(int x){ for (int y = 1;y <= maxn;y++){ if (mp[x][y] >= 1){ mp[x][y]--; mp[y][x]--; dfs(y); } } s.push(x); } signed main(){ n = fr(); for (int i = 1;i <= n;i++){ int u,v; u = fr(),v = fr(); mp[u][v]++; mp[v][u]++; tag[u]++; tag[v]++; } int root = 1; for (int i = 1;i <= maxn;i++){ if (tag[i] & 1){ root = i; break; } } dfs(root); while (!s.empty()){ fw((int)(s.top())); puts(""); s.pop(); } return 0; }


测评信息: