CodeForces-1169B Pairs

See the original article https://dyingdown.github.io/2019/11/24/CodeForces-1169B-Pairs/

Pairs

Problem

Toad Ivan has mm pairs of integers, each integer is between 11 and n, inclusive. The pairs are ( a 1 , b 1 ) , ( a 2 , b 2 ) , … , ( a m , b m ) (a_1,b_1),(a_2,b_2),…,(a_m,b_m) (a1,b1),(a2,b2),,(am,bm).

He asks you to check if there exist two integers xx and y ( 1 ≤ x < y ≤ n ) y (1≤x<y≤n) y(1x<yn) such that in each given pair at least one integer is equal to x or y.

Input

The first line contains two space-separated integers nn and m ( 2 ≤ n ≤ 300000 , 1 ≤ m ≤ 300000 ) m (2≤n≤300000, 1≤m≤300000) m(2n300000,1m300000) — the upper bound on the values of integers in the pairs, and the number of given pairs.

The next mm lines contain two integers each, the ii-th of them contains two space-separated integers a i a_i ai and b i b_i bi ( 1 ≤ a i , b i ≤ n , a i ≠ b i ) (1≤ai,bi≤n,ai≠bi) (1ai,bin,ai=bi) — the integers in the$ i-th$ pair.

Output

Output “YES” if there exist two integers x and y ( 1 ≤ x < y ≤ n 1≤x<y≤n 1x<yn) such that in each given pair at least one integer is equal to x or y. Otherwise, print “NO”. You can print each letter in any case (upper or lower).

Examples

Input
4 6
1 2
1 3
1 4
2 3
2 4
3 4
Output
NO
Input
5 4
1 2
2 3
3 4
4 5
Output
YES
Input
300000 5
1 2
1 2
1 2
1 2
1 2

Output

YES

Note

In the first example, you can’t choose any x, y because for each such pair you can find a given pair where both numbers are different from chosen integers.

In the second example, you can choose x=2 and y=4.

In the third example, you can choose x=1 and y=2.

Analysis

First, you get the fist pair of numbers. And then find a pair of numbers that is totally different with the first pair. With these four numbers, you can make four pairs. For each new pair, try to find if the new pair can cover all the rest pairs. If one of the new pair can, then answer is YES. And if no pair can cover the rest pairs, then the answer is NO.

Code

#include<bits/stdc++.h>

using namespace std;
typedef pair<int,int> P ;

P pairs[1000000];
int main() {
	int n, m, a, b;
	scanf("%d %d", &n, &m);
	int x, y;
	scanf("%d %d", &x, &y);
	pairs[0] = P(x, y);
	int flag = 0, flagx = 0, flagy = 0;
	for(int i = 1; i < m; i ++) {
		scanf("%d %d", &a, &b);
		pairs[i] = P(a, b);
		if(a != x and a != y and b != x and b != y and flag == 0) {
			flag = i;
			flagx = a; flagy = b;
		}
	}
	int t[4][2] = {x, flagx, x, flagy, y, flagx, y, flagy};
	if(flag == 0) {
		printf("YES\n");
	} else {
		int fflag = 0;
		for(int s = 0; s < 4; s ++) {
                    fflag = 0;
			for(int i = 1; i < m; i ++) {
				if(i == flag) continue;
				else {
					if(pairs[i].first != t[s][0] and pairs[i].first != t[s][1]
						and pairs[i].second != t[s][0] and pairs[i].second != t[s][1]) {
						fflag = 1;
						break;
					} 
				}
			}
			if(!fflag) break;
		}	
		if(fflag == 0) printf("YES\n");
		else printf("NO\n");
	}
	return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值