当前位置:网站首页>AcWing 1124. 骑马修栅栏 题解(欧拉回路)
AcWing 1124. 骑马修栅栏 题解(欧拉回路)
2022-07-21 20:03:00 【QingQingDE23】
AcWing 1124. 骑马修栅栏
需要记住的是为什么ans要按逆序输出,还有如何按字典序最小的方案去搜索
大佬题解原地址
#include<bits/stdc++.h>
using namespace std;
const int N = 510, M = 1100;
int g[N][N];
int ans[M];
int n = 500, m;
int cnt;
int din[N];
void dfs(int u) {
for(int i = 1; i <= n; i ++ ){
if(g[u][i]){
g[u][i] -- ;
g[i][u] -- ;
dfs(i);
}
}
ans[ ++ cnt] = u;
}
int main()
{
cin>>m;
while(m -- ){
int a, b;
cin>>a>>b;
g[a][b] ++ ;
g[b][a] ++ ;
din[a] ++ ;
din[b] ++ ;
}
int start = 1;
while(!din[start]) start ++ ; //找到第一个存在的点start
for(int i = 1; i <= n; i ++ ){
if(din[i] % 2){
//无向图中只有度数为奇数的点可以作为起点
start = i;
break;
}
}
dfs(start);
for(int i = cnt; i; i -- ) cout<<ans[i]<<endl;
return 0;
}
边栏推荐
- 如何获得 Apache 官方域名邮箱?专访 Apache Linkis 五位新晋 Committer
- Weekly recommended short video: what is the difference between IOT development and embedded development?
- unity2D 箭头动画
- 在同花顺网上开户安全吗 国债逆回购怎么买
- 加载RainCitySpaces的标签信息并进行显示
- What is a video content recommendation engine?
- Dota2参议院[贪心与队列]
- 机房动环监控系统的功能,动环监控系统的主要功能
- 分支合并
- 啊啊啊啊?margin-top的百分比到底相对于谁
猜你喜欢
Delivery practice of private PAAS platform based on cloud native
ROS入门级教程
RESTful-URL设计规范
什么是视频内容推荐引擎?
How can I sync previous online notes after OneNote is reinstalled or upgraded?
智能运维场景解析:如何通过异常检测发现业务系统状态异常
2022 音视频技术风向标
Intelligent operation and maintenance scenario analysis: how to detect abnormal business system status through exception detection
GL_TRIANGLE_FAN和GL_TRIANGLE_STRIP
Keyframesextractutils Py, dynamically supports three framing methods, key parameters can be configured, and the code has been optimized for better effect and performance.
随机推荐
啊啊啊啊?margin-top的百分比到底相对于谁
JS simulation form post submission
Dokcer运行Nacos容器自动退出问题
2022 音视频技术风向标
力扣------统计有序矩阵中的负数
[ERR] 1273 - Unknown collation: ‘utf8mb4_0900_ai_ci‘
What are the five standards for the dual prevention mechanism of hazardous chemical enterprises and what are the contents
leetcode 792. Number of Matching Subsequences(匹配的子串数量)
About BOM update of SAP apo rpmcall specified production order
文件操作——C语言
无人之地的空调制冷不好
ES6常用语法
[10:00 public class]: cloud video conference system privatization practice
Meta最新图像生成工具火了,竟能把梦境画成现实!
Après la mise en service du progiciel de gestion intégré des vêtements, ces problèmes doivent être pris en considération.
What is a video content recommendation engine?
Etcdv3 practice · common operation model encapsulation and detailed implementation
加载RainCitySpaces的标签信息并进行显示
Restful URL design specification
服装ERP上线后,这些问题必须重视