Created
February 4, 2020 11:31
-
-
Save inspirit941/574ee93f6e6d6b80433dec177bb62d26 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cities = int(input()) | |
_ = int(input()) | |
parent = {i:i for i in range(1, cities+1)} | |
def parent_find(x): | |
if x == parent[x]: | |
return x | |
p = parent_find(parent[x]) | |
parent[x] = p | |
return parent[x] | |
def union(x,y): | |
x = parent_find(x) | |
y = parent_find(y) | |
if x != y: | |
parent[y] = x | |
for y in range(1, cities+1): | |
maps = list(map(int, input().split())) | |
for x in range(1, len(maps)+1): | |
# 갈 수 있는 도시라면, 전부 y 기준으로 맞춘다. | |
if maps[x-1] == 1: | |
union(y, x) | |
tour = list(map(int, input().split())) | |
result = set([parent_find(i) for i in tour]) | |
if len(result) != 1: | |
print("NO") | |
else: | |
print("YES") | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment