POJ-1300(汉密尔顿回路)

博客介绍了POJ-1300题目的解题思路,这是一个关于汉密尔顿回路的问题。关键在于处理有两个奇数度节点时,起点必须是非0节点,并且在实际解决过程中,不检查连通性反而能通过验证。
摘要由CSDN通过智能技术生成

题目:http://poj.org/problem?id=1300

分析:简单的汉密尔顿回路问题,需要注意的是要回到node 0,因此需要判断在有两个奇度node时,start node必须是非0的那个,没有判断连通性,1A,看了discuss之后,发现竟然“判断连通性会WA,不判断就AC”,也是醉了


#include <cstdio>
#include <iostream>
#include <string>
#include <sstream>
using namespace std;

const int MAX_N = 20;
int m, n, degree[MAX_N];

int main()
{
#ifndef ONLINE_JUDGE
	freopen("__in.txt", "r", stdin);
	freopen("__out.txt", "w", stdout);
#else
	ios::sync_with_stdio(false);
#endif

	string s;
	while(getline(cin, s), s != "ENDOFINPUT"){
		//init
		istringstream sin(s);
		sin >> s >> m >> n;
		for(int i = 0; i < n; ++i) degree[i] = 0;
		//input
		int tot = 0;
		for(int i = 0; i < n; ++i){
			getline(cin, s);
			if(s.empty()) continue;
			istringstream sin(s);
			for(int j; sin >> j; ){
				++degree[i];
				++degree[j];
				++tot;
			}
		}
		getline(cin, s);
		//check
		int x = -1, y = -1, odd = 0;
		for(int i = 0; i < n; ++i){
			if(degree[i] & 1){
				++odd;
				if(x == -1) x = i;
				else if(y == -1) y = i;
			}
		}
		if(odd != 0 && odd != 2 ||
		   odd == 0 && m != 0   ||
		   odd == 2 && (m != x && m != y || m == 0)){
			cout << "NO\n";
		}
		else cout << "YES " << tot << "\n";
	}
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值