POJ1300(欧拉回路)
|
Door Man
Description
You are a butler in a large mansion. This mansion has so many rooms that they are merely referred to by number (room 0, 1, 2, 3, etc...). Your master is a particularly absent-minded lout and continually leaves doors open throughout a particular floor of the
house. Over the years, you have mastered the art of traveling in a single path through the sloppy rooms and closing the doors behind you. Your biggest problem is determining whether it is possible to find a path through the sloppy rooms where you:
In this problem, you are given a list of rooms and open doors between them (along with a starting room). It is not needed to determine a route, only if one is possible. Input
Input to this problem will consist of a (non-empty) series of up to 100 data sets. Each data set will be formatted according to the following description, and there will be no blank lines separating data sets.
A single data set has 3 components:
Following the final data set will be a single line, "ENDOFINPUT". Output
For each data set, there will be exactly one line of output. If it is possible for the butler (by following the rules in the introduction) to walk into his chambers and close the final open door behind him, print a line "YES X", where X is the number of doors
he closed. Otherwise, print "NO". Sample Input START 1 2 Sample Output YES 1 Source |
[Submit] [Go Back] [Status]
[Discuss]
题目描写叙述:
你是一座大庄园的管家。
庄园有非常多房间,编号为 0、1、2、3,...。
你的主人是一个心不在焉的人,常常沿着走廊任意地把房间的门打开。
多年来,你掌握了一个诀窍:沿着一个通道,穿过这些大房间,并把房门关上。你的问题是是否能找到一条路径经过全部开着门的房间,并使得:
这题字符处理挺麻烦的。
。
。。
1) 通过门后马上把门关上;
2) 关上了的门不再打开;
3) 最后回到你自己的房间(房间 0),而且全部的门都已经关闭了。
以房间为顶点、连接房间之间的门为边构造图。依据题目的意思,输入文件里每一个測试数据所构造的图都是连通的。本题实际上是推断一个图中是否存在欧拉回路或欧拉通路,要分两种情况考虑:
1:
假设全部的房间都有偶数个门(通往其它房间),那么有欧拉回路,能够从 0 号房间出发,回到 0 号房间。可是这样的情况下,出发的房间必须为 0,由于要求回到 0 号房间。
2:
有两个房间的门数为奇数,其余的都是偶数,假设出发的房间和 0 号房间的门数都是奇数,那么也能够从出发的房间到达 0 号房间,而且满足题目要求。可是不能从房间 0 出发,必须从还有一个门数为奇数的房间出发。
#include <cstdio>
#include <cstring>
int readLine( char* s )
{
int L;
for( L=0; ( s[L]=getchar() ) != '\n' && s[L] != EOF; L++ );
s[L] = 0;
return L;
}
int main( )
{
int i, j;
char buf[128];
int M, N;
int door[20];
while( readLine(buf) )
{
if( buf[0]=='S' )
{
sscanf( buf, "%*s %d %d", &M, &N );
for( i=0; i < N; i++ )
door[i] = 0;
int doors = 0;
for( i=0; i<N; i++ )
{
readLine(buf);
int k = 0; while( sscanf(buf + k, "%d", &j) == 1 )
{
doors++;
door[i]++;
door[j]++;
while( buf[k] && buf[k] == ' ' ) k++;
while( buf[k] && buf[k] != ' ' ) k++;
}
}
readLine( buf ); int odd = 0, even = 0;
for( i=0; i<N; i++ )
{
if( door[i]%2==0 ) even++;
else odd++;
}
if( odd==0 && M==0 ) printf( "YES %d\n", doors );
else if( odd==2 && door[M]%2==1 && door[0]%2==1 && M!=0 )
printf( "YES %d\n", doors );
else printf( "NO\n" );
}
else if( !strcmp(buf, "ENDOFINPUT") )
break;
}
return 0;
}
POJ1300(欧拉回路)的更多相关文章
- POJ1300 Door Man —— 欧拉回路(无向图)
题目链接:http://poj.org/problem?id=1300 Door Man Time Limit: 1000MS Memory Limit: 10000K Total Submiss ...
- ACM/ICPC 之 混合图的欧拉回路判定-网络流(POJ1637)
//网络流判定混合图欧拉回路 //通过网络流使得各点的出入度相同则possible,否则impossible //残留网络的权值为可改变方向的次数,即n个双向边则有n次 //Time:157Ms Me ...
- [poj2337]求字典序最小欧拉回路
注意:找出一条欧拉回路,与判定这个图能不能一笔联通...是不同的概念 c++奇怪的编译规则...生不如死啊... string怎么用啊...cincout来救? 可以直接.length()我也是长见识 ...
- ACM: FZU 2112 Tickets - 欧拉回路 - 并查集
FZU 2112 Tickets Time Limit:3000MS Memory Limit:32768KB 64bit IO Format:%I64d & %I64u P ...
- UVA 10054 the necklace 欧拉回路
有n个珠子,每颗珠子有左右两边两种颜色,颜色有1~50种,问你能不能把这些珠子按照相接的地方颜色相同串成一个环. 可以认为有50个点,用n条边它们相连,问你能不能找出包含所有边的欧拉回路 首先判断是否 ...
- POJ 1637 混合图的欧拉回路判定
题意:一张混合图,判断是否存在欧拉回路. 分析参考: 混合图(既有有向边又有无向边的图)中欧拉环.欧拉路径的判定需要借助网络流! (1)欧拉环的判定:一开始当然是判断原图的基图是否连通,若不连通则一定 ...
- codeforces 723E (欧拉回路)
Problem One-Way Reform 题目大意 给一张n个点,m条边的无向图,要求给每条边定一个方向,使得最多的点入度等于出度,要求输出方案. 解题分析 最多点的数量就是入度为偶数的点. 将入 ...
- UVa 12118 检查员的难题(dfs+欧拉回路)
https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem& ...
- UVA 10054 (欧拉回路) The Necklace
题目:这里 题意:有一种由彩色珠子连接而成的项链,每个珠子两半由不同颜色(由1到50的数字表示颜色)组成,相邻的两个珠子在接触的地方颜色相同,现在有一些零碎的珠子,确认它是否能 复原成完整的项链. 把 ...
随机推荐
- 内核编程实例,多文件的Makefile
内核编程实例,多文件的Makefile 经典的hello word测试 ////# cat hello.c #include <linux/module.h> #include <l ...
- WebGL自学教程——WebGL演示样本:开始
最终开始WebGL样品演示,...... 开始 使用WebGL步骤,非常easy: 1. 获得WebGL的渲染环境(也叫渲染上下文). 2. 发挥你的想象力,利用<WebGL參考手冊>中的 ...
- Face-landmarks-detection-benchmark 人脸特征定位网站汇总
源地址:https://www.douban.com/note/525032729/ https://github.com/delphifirst/FaceXhttps://github.com/ ...
- Android Studio中如何打JAR包
Android Studio中对于library类型的Moudle,默认打出来的是AAR包, 但有时候我们的SDK还需要共享给一些其他eclipse的项目使用,这样我们就需要输出JAR包, 可以通过在 ...
- HTTP POST请求的Apache Rewrite规则设置
最近自测后端模块时有个业务需求需要利用WebServer(我用的是Apache)将HTTP POST请求转发至后端C模块,后端处理后返回2进制加密数据.http post请求的url格式为: ...
- 名字修饰约定extern "C"与extern "C++"浅析
所谓名字修饰约定,就是指变量名.函数名等经过编译后重新输出名称的规则. 比如源代码中函数名称为int Func(int a,int b),经过编译后名称可能为?Func@@YAHHH@Z.?Func@ ...
- HDU1035深度搜索
/* HDU1035 意甲冠军: 给定一个字符矩阵,N S W E分别代表向上,下,剩下,进 模拟搜索,推断: 若能走出字符矩阵.则Yes,输出步数 若走不出矩阵,那么必然有圈存在,必然在矩阵中存在一 ...
- poj 2038 Team Rankings 枚举排列
//poj 2038 //sep9 #include <iostream> #include <algorithm> using namespace std; char s[1 ...
- 使用notepad运行python
Notepad++ 是一个开源的文本编辑器,功能强大而且使用方便,一般情况下,Notepad++作为代码查看器,很方便,但是每次要运行的时候,总是需要用右键打开其他的IDE来编译和运行,总有些不方便. ...
- Liftoff Software | Next stop, innovation
Liftoff Software | Next stop, innovation Previous Next Gate One 1.1 Now Available Submitted by Dan M ...


