-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCF_1169B.py
59 lines (57 loc) · 1.04 KB
/
CF_1169B.py
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
n,m = (((map(int, input().split()))))
arr = []
for i in range(m):
a,b = (((map(int, input().split()))))
arr.append([a,b])
flag = False
x = arr[0][0]
brr = []
for pair in arr:
if x not in pair:
brr.append(pair)
if len(brr) == 0:
print("YES")
exit()
Dict = {}
for pair in brr:
if pair[0] not in Dict:
Dict[pair[0]] = 1
else:
Dict[pair[0]] +=1
if pair[1] not in Dict:
Dict[pair[1]] = 1
else:
Dict[pair[1]] +=1
for i in Dict:
if Dict[i] == len(brr):
flag = True
break
if flag:
print("YES")
exit()
x = arr[0][1]
brr = []
for pair in arr:
if x not in pair:
brr.append(pair)
if len(brr) == 0:
print("YES")
exit()
Dict = {}
for pair in brr:
if pair[0] not in Dict:
Dict[pair[0]] = 1
else:
Dict[pair[0]] +=1
if pair[1] not in Dict:
Dict[pair[1]] = 1
else:
Dict[pair[1]] +=1
for i in Dict:
if Dict[i] == len(brr):
flag = True
break
if flag:
print("YES")
else:
print("NO")