이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define sz(a) (int)a.size()
#define pb push_back
const int mxN = (int)5e5+10;
int n, m, vis[mxN], vis1[mxN], nx[mxN];
vector<pair<int,int>> v, adj[mxN];
int SZ[mxN];
void dfs(int s){
if(vis[s]){ int p = s;
while(vis[p]) cout<<p<<" ", vis[p]=0, p = nx[p];
cout << "\n";
}
while(SZ[s]){
auto [u,e] = adj[s][SZ[s]-1]; SZ[s]--;
if(!vis1[e]) vis1[e]=vis[s]=1, nx[s]=u, dfs(u);
}
}
int32_t main(){
ios_base::sync_with_stdio(false); cin.tie(0);
cin >> n >> m;
for(int i = 0; i < m; i++){
int a, b; cin >> a >> b;
adj[a].pb({b,i}); adj[b].pb({a,i});
}
for(int i = 1; i <= n; i++) SZ[i] = sz(adj[i]);
dfs(1);
}
컴파일 시 표준 에러 (stderr) 메시지
postmen.cpp: In function 'void dfs(int)':
postmen.cpp:16:8: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
16 | auto [u,e] = adj[s][SZ[s]-1]; SZ[s]--;
| ^
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |