sicily 1021. Couples

Description

 

N couples are standing in a circle, numbered consecutively clockwise from 1 to 2N. Husband and wife do not always stand together. We remove the couples who stand together until the circle is empty or we can't remove a couple any more.

 

Can we remove all the couples out of the circle?

 

 

Input

 

There may be several test cases in the input file. In each case, the first line is an integer N(1 <= N <= 100000)----the number of couples. In the following N lines, each line contains two integers ---- the numbers of each couple.

N = 0 indicates the end of the input.

 

 

Output

 

Output "Yes" if we can remove all the couples out of the circle. Otherwise, output "No".

 

 

Sample Input

4

1 4

2 3

5 6

7 8

 

2

1 3

2 4

 

0

 

Sample Output

Yes

No

 

 

这是Sicily1021题,题目意思不太明确。网上搜到的大多是直接贴代码,完全没有解释清楚题目的意思。后来本人浏览了好几个论坛和网页的评论,慢慢理解了。里case1为例,n = 4, 2n 就是8, 1-8 按顺时针方向排好。

图片一

14couple, 23couple, 56couple, 78couple

相邻的couple可以去掉,所以23, 5678可以去掉,


 图片2


原来的14是分开的,可是去掉相邻的(2,3) (5,6) (7,8)之后,他们又是相邻的了,所以也可以去掉,也就是说,所以的都可以去掉,所以outputYES

case2同理,13couple, 24couple,但是他们都不相邻,所以不能去掉,所以outputNO

 图片三

 

参照CSDN论坛上大神的理解:给每对couple一个tag

比如,case1中,各个couple如下

Tag  couple 

1   14

2   23

3   56

4   78

那么这个circle中,各个couple的分布应该是这样的:

12213344

Tag相同并且是相邻的就可以去掉,而去掉相邻的以后,原来不相邻的变成相邻的也可以去掉,所以case1是可以全部去掉的。这跟括号匹配很像。如: [ ( ) ] < > { } 。所以解此题的方法也可以参照括号匹配,利用栈即可。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值