ORIGIN

CodeForces-1169B Pairs

ACM 3 mins576 words
B. Pairs
time limit per test: 2 seconds
memory limit per test: 256 megabytes
input: standard input
output:standard output

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)$.

He asks you to check if there exist two integers xx and $y (1≤x<y≤n)$ 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)$ — 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$ and $b_i$ $(1≤ai,bi≤n,ai≠bi)$ — the integers in the$ i-th$ pair.

Output

Output “YES” if there exist two integers x and y ($1≤x<y≤n$) 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

1
2
3
4
5
6
7
4 6
1 2
1 3
1 4
2 3
2 4
3 4

Output

1
NO

Input

1
2
3
4
5
5 4
1 2
2 3
3 4
4 5

Output

1
YES

Input

1
2
3
4
5
6
300000 5
1 2
1 2
1 2
1 2
1 2

Output

1
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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#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;
}
TOP
COMMENT
  • ABOUT
  • |
o_oyao
  The Jigsaw puzzle is incomplete with even one missing piece. And I want to be the last piece to make the puzzle complete.
Like my post?
Default QR Code
made with ❤️ by o_oyao
©o_oyao 2019-2024

|