Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
42499 陈万瑄 一笔画问题 C++ 解答错误 20 0 MS 264 KB 497 2022-06-30 21:29:04

Tests(1/5):


#include<bits/stdc++.h> using namespace std; int n,m,t[101][101],d[101]; int start=1; stack<int> st; void dfs(int i){ st.push(i); for(int j=1;j<=n;j++){ if(t[i][j]){ t[i][j]=t[j][i]=0; dfs(j); } } } int main(){ cin>>n>>m; while(m--){ int a,b; cin>>a>>b; t[a][b]=t[b][a]=1; d[a]++,d[b]++; } for(int i=1;i<=n;i++){ if(d[i]%2){ start=i; break; } } dfs(start); while(st.size()){ cout<<st.top()<<" "; st.pop(); } return 0; }


测评信息: