POJ 1637 Sightseeing tour

Sightseeing tour
Time Limit: 1000MS Memory Limit: 10000K
Total Submissions: 8362 Accepted: 3530

Description

The city executive board in Lund wants to construct a sightseeing tour by bus in Lund, so that tourists can see every corner of the beautiful city. They want to construct the tour so that every street in the city is visited exactly once. The bus should also start and end at the same junction. As in any city, the streets are either one-way or two-way, traffic rules that must be obeyed by the tour bus. Help the executive board and determine if it's possible to construct a sightseeing tour under these constraints.

Input

On the first line of the input is a single positive integer n, telling the number of test scenarios to follow. Each scenario begins with a line containing two positive integers m and s, 1 <= m <= 200,1 <= s <= 1000 being the number of junctions and streets, respectively. The following s lines contain the streets. Each street is described with three integers, xi, yi, and di, 1 <= xi,yi <= m, 0 <= di <= 1, where xi and yi are the junctions connected by a street. If di=1, then the street is a one-way street (going from xi to yi), otherwise it's a two-way street. You may assume that there exists a junction from where all other junctions can be reached.

Output

For each scenario, output one line containing the text "possible" or "impossible", whether or not it's possible to construct a sightseeing tour.

混合图欧拉回路的判定:
做的第一道关于网络流的题目,首先是结合欧拉回路所需的一些要求构图,网络流只需要用到无向边(流网络动态改变,只有无向边方向要确定要调整)...
因为自己在写增广路算法的时候的一点点小问题,这道题目调试了2天,浪费了大把时间,以后要更注意细节。

另外学到了欧拉回路的构造算法---fleury算法,这是一大收获:
create a stack s and push a vertex at the graph;
fleury()
{
where (!s.empty())
{
int u = s.top();
s.pop();

if(u have out edge)
dfs(u);
else
path[cnt++] = u;
}
}

dfs(int u)
{
s.push(u);
while(u have out edge)
{
let v = the vertex adjacent with u;
delete this edge;
s.push(u = v);
}
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值