結果

問題 No.629 グラフの中に眠る門松列
ユーザー tails1434tails1434
提出日時 2020-02-06 07:40:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 537 ms / 4,000 ms
コード長 2,053 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 77,244 KB
最終ジャッジ日時 2024-09-25 00:03:25
合計ジャッジ時間 4,795 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,312 KB
testcase_01 AC 42 ms
55,564 KB
testcase_02 AC 41 ms
54,532 KB
testcase_03 AC 40 ms
55,376 KB
testcase_04 AC 40 ms
53,924 KB
testcase_05 AC 40 ms
55,916 KB
testcase_06 AC 41 ms
54,984 KB
testcase_07 AC 39 ms
54,412 KB
testcase_08 AC 40 ms
54,576 KB
testcase_09 AC 39 ms
55,080 KB
testcase_10 AC 40 ms
54,164 KB
testcase_11 AC 41 ms
55,256 KB
testcase_12 AC 41 ms
54,880 KB
testcase_13 AC 40 ms
55,388 KB
testcase_14 AC 41 ms
54,572 KB
testcase_15 AC 40 ms
54,240 KB
testcase_16 AC 40 ms
54,232 KB
testcase_17 AC 40 ms
54,756 KB
testcase_18 AC 42 ms
55,192 KB
testcase_19 AC 40 ms
54,408 KB
testcase_20 AC 39 ms
55,892 KB
testcase_21 AC 59 ms
67,760 KB
testcase_22 AC 59 ms
67,504 KB
testcase_23 AC 57 ms
67,964 KB
testcase_24 AC 204 ms
76,732 KB
testcase_25 AC 200 ms
76,888 KB
testcase_26 AC 537 ms
76,516 KB
testcase_27 AC 87 ms
76,568 KB
testcase_28 AC 45 ms
56,224 KB
testcase_29 AC 95 ms
76,940 KB
testcase_30 AC 94 ms
77,244 KB
testcase_31 AC 89 ms
76,916 KB
testcase_32 AC 96 ms
76,712 KB
testcase_33 AC 95 ms
77,012 KB
testcase_34 AC 92 ms
76,728 KB
testcase_35 AC 85 ms
76,592 KB
testcase_36 AC 97 ms
76,808 KB
testcase_37 AC 92 ms
76,748 KB
testcase_38 AC 90 ms
77,136 KB
testcase_39 AC 88 ms
76,640 KB
testcase_40 AC 81 ms
76,592 KB
testcase_41 AC 82 ms
76,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
import sys
input = sys.stdin.readline

class UnionFind():
    def __init__(self, n):
        self.n = n
        self.parents = [-1] * n

    def find(self, x):
        if self.parents[x] < 0:
            return x
        else:
            self.parents[x] = self.find(self.parents[x])
            return self.parents[x]

    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)

        if x == y:
            return

        if self.parents[x] > self.parents[y]:
            x, y = y, x

        self.parents[x] += self.parents[y]
        self.parents[y] = x

    def size(self, x):
        return -self.parents[self.find(x)]

    def same(self, x, y):
        return self.find(x) == self.find(y)

    def members(self, x):
        root = self.find(x)
        return [i for i in range(self.n) if self.find(i) == root]

    def roots(self):
        return [i for i, x in enumerate(self.parents) if x < 0]

def isCheck(a,b,c):
    if a != b and b != c and c != a:
        if max(a,b,c) == b or min(a,b,c) == b:
            return True
    return False

def main():
    N, M = map(int, input().split())
    A = list(map(int, input().split()))
    edge = [[] for _ in range(N)]
    uni = UnionFind(N)
    for _ in range(M):
        u, v = map(int, input().split())
        u -= 1
        v -= 1
        edge[u].append(v)
        edge[v].append(u)
        uni.union(u,v)

    Q = deque([])
    for i in uni.roots():
        Q.append((i,-1))
    flag = False
    visited = [False] * N
    while Q:
        s, p = Q.popleft()
        visited[s] = True
        for n in edge[s]:
            if p == n:
                continue
            
            for m in edge[s]:
                if n == m:
                    continue
                if isCheck(A[m], A[s], A[n]):
                    flag = True
                    break
            if not visited[n]:
                Q.append((n,s))

    if flag:
        print('YES')
    else:
        print('NO')

            


if __name__ == "__main__":
    main()
0