結果

問題 No.629 グラフの中に眠る門松列
ユーザー rlangevinrlangevin
提出日時 2023-01-15 01:53:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 230 ms / 4,000 ms
コード長 821 bytes
コンパイル時間 472 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,288 KB
最終ジャッジ日時 2024-12-26 15:24:45
合計ジャッジ時間 4,188 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
51,968 KB
testcase_01 AC 46 ms
51,840 KB
testcase_02 AC 45 ms
51,968 KB
testcase_03 AC 47 ms
52,096 KB
testcase_04 AC 46 ms
51,840 KB
testcase_05 AC 45 ms
52,224 KB
testcase_06 AC 46 ms
51,840 KB
testcase_07 AC 49 ms
51,968 KB
testcase_08 AC 45 ms
51,968 KB
testcase_09 AC 45 ms
52,224 KB
testcase_10 AC 44 ms
51,968 KB
testcase_11 AC 43 ms
51,840 KB
testcase_12 AC 47 ms
52,096 KB
testcase_13 AC 46 ms
51,840 KB
testcase_14 AC 45 ms
52,096 KB
testcase_15 AC 42 ms
52,096 KB
testcase_16 AC 44 ms
52,096 KB
testcase_17 AC 51 ms
51,840 KB
testcase_18 AC 43 ms
52,224 KB
testcase_19 AC 44 ms
51,840 KB
testcase_20 AC 48 ms
51,840 KB
testcase_21 AC 230 ms
75,648 KB
testcase_22 AC 48 ms
54,144 KB
testcase_23 AC 51 ms
54,528 KB
testcase_24 AC 54 ms
61,824 KB
testcase_25 AC 89 ms
76,032 KB
testcase_26 AC 153 ms
76,288 KB
testcase_27 AC 58 ms
62,464 KB
testcase_28 AC 45 ms
53,376 KB
testcase_29 AC 56 ms
61,568 KB
testcase_30 AC 57 ms
62,208 KB
testcase_31 AC 60 ms
62,336 KB
testcase_32 AC 54 ms
62,336 KB
testcase_33 AC 58 ms
64,000 KB
testcase_34 AC 55 ms
61,440 KB
testcase_35 AC 58 ms
61,312 KB
testcase_36 AC 56 ms
62,592 KB
testcase_37 AC 63 ms
62,336 KB
testcase_38 AC 61 ms
61,952 KB
testcase_39 AC 60 ms
61,056 KB
testcase_40 AC 58 ms
61,952 KB
testcase_41 AC 54 ms
60,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline
sys.setrecursionlimit(10**7)

def kadomatsu(a, b, c):
    for i in [-1, 1]:
        if a * i < b * i and b * i > c * i and a != c:
            return True
    return False

def dfs(s, L, p=-1):
    if len(L) == 3:            
        if kadomatsu(A[L[0]], A[L[1]], A[L[2]]):
            print("YES")
            exit()
        return 
    for u in G[s]:
        if u == p:
            continue
        L.append(u)
        dfs(u, L)
        L.pop()
    return  
    


N, M = map(int, readline().split())
A = list(map(int, readline().split()))
G = [[] for i in range(N)]
for i in range(M):
    u, v = map(int, readline().split())
    u, v = u - 1, v - 1
    if A[u] == A[v]:
        continue
    G[u].append(v)
    G[v].append(u)
    
for i in range(N):
    dfs(i, [i])
print("NO")
0