博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
sgu101 欧拉路
阅读量:5063 次
发布时间:2019-06-12

本文共 1906 字,大约阅读时间需要 6 分钟。

题意:给你n张牌,每个牌有两面,要求找出一种摆放顺序,使得相邻的牌的面相同。初始给出的牌的方向为正

#include 
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;int father[7];int len;int head[7];int bx;int degree[7];int vis[7];int getfather(int x){ if(father[x]!=x) father[x]=getfather(father[x]); return father[x];}struct edge{ int val;int to;int next;int vis;int oppo;int t;}e[1111];void link(int a,int b){ int fa=getfather(a); int fb= getfather(b); father[fa]=fb;}void add(int from,int to,int val){ e[len].t=1; e[len].to =to ;e[len].val = val;e[len].vis=0; e[len].oppo= len+1; e[len].next= head[from]; head[from]= len++; e[len].to= from;e[len].val=val; e[len].t= 0; e[len].vis=0; e[len].oppo= len-1; e[len].next= head[to]; head[to]=len++;}int judge(){ bx= 0 ; int ans=0;int ans1=0; for(int i=0;i<=6;i++) if(vis[i])if(father[i]==i) ans++; if(ans!=1) return 0; for(int i=0;i<=6;i++) if(degree[i]&1) ans1++,bx= i; if(bx==0) for(int i=0;i<=6;i++) if(vis[i]) bx= i; if(ans1==2||ans1==0) return 1; return 0;}struct Node{ int t;int x;};stack
q;void dfs(int x){ for(int i= head[x];i!=-1;i=e[i].next){ if(e[i].vis) continue; int cc=e[i].to; e[i].vis= 1;e[e[i].oppo].vis=1; dfs(cc); Node gg ; if(e[i].t==1) gg.t=1; else gg.t=0; gg.x= e[i].val; q.push(gg); }}int main(){ int n,a,b; scanf("%d",&n); memset(head,-1,sizeof(head)); len=0; memset(vis,0,sizeof(vis)); memset(degree,0,sizeof(degree)); for(int i=0;i<=6;i++) father[i]= i; for(int i=1;i<=n;i++){ scanf("%d%d",&a,&b); vis[a]=1;vis[b]=1; add(a,b,i); degree[a]++; degree[b]++; link(a,b); } if(judge()==0) printf("No solution\n"); else{ dfs(bx); while(!q.empty()){ Node t= q.top(); q.pop(); if(t.t==1) printf("%d +\n",t.x); else printf("%d -\n",t.x); } printf("\n"); } return 0;}

 

转载于:https://www.cnblogs.com/yigexigua/p/3965153.html

你可能感兴趣的文章
非对称加密
查看>>
bzoj 3413: 匹配
查看>>
从下周开始就要采用网上记录值班日志了
查看>>
在qq中可以使用添加标签功能
查看>>
eclipse 自定义布局
查看>>
团队项目开发客户端——登录子系统的设计
查看>>
【AppScan心得】IBM Rational AppScan 无法记录登录序列
查看>>
[翻译] USING GIT IN XCODE [4] 在XCODE中使用GIT[4]
查看>>
简化通知中心的使用
查看>>
SpringMVC的@Validated校验注解使用方法
查看>>
Python之os模块
查看>>
IO—》Properties类&序列化流与反序列化流
查看>>
【蓝桥杯】PREV-21 回文数字
查看>>
html 简介
查看>>
python使用上下文对代码片段进行计时,非装饰器
查看>>
js中比较实用的函数用法
查看>>
安装预览版镜像后无法检测到预览版更新的解决方案
查看>>
【bzoj5099】[POI2018]Pionek 双指针法
查看>>
别让安全问题拖慢了 DevOps!
查看>>
JAR打包和运行
查看>>