結果

問題 No.629 グラフの中に眠る門松列
ユーザー syunsukesyunsuke
提出日時 2019-06-06 00:17:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 481 ms / 4,000 ms
コード長 460 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 77,324 KB
最終ジャッジ日時 2024-09-22 14:08:35
合計ジャッジ時間 5,001 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,416 KB
testcase_01 AC 38 ms
52,472 KB
testcase_02 AC 37 ms
52,816 KB
testcase_03 AC 37 ms
52,404 KB
testcase_04 AC 37 ms
52,860 KB
testcase_05 AC 36 ms
52,260 KB
testcase_06 AC 36 ms
52,320 KB
testcase_07 AC 36 ms
53,804 KB
testcase_08 AC 37 ms
52,636 KB
testcase_09 AC 36 ms
52,956 KB
testcase_10 AC 36 ms
52,652 KB
testcase_11 AC 36 ms
53,756 KB
testcase_12 AC 36 ms
52,256 KB
testcase_13 AC 36 ms
52,712 KB
testcase_14 AC 37 ms
53,684 KB
testcase_15 AC 35 ms
53,620 KB
testcase_16 AC 36 ms
53,840 KB
testcase_17 AC 37 ms
52,192 KB
testcase_18 AC 36 ms
52,468 KB
testcase_19 AC 37 ms
52,808 KB
testcase_20 AC 38 ms
53,168 KB
testcase_21 AC 81 ms
69,268 KB
testcase_22 AC 96 ms
70,560 KB
testcase_23 AC 93 ms
73,072 KB
testcase_24 AC 459 ms
76,944 KB
testcase_25 AC 481 ms
76,800 KB
testcase_26 AC 380 ms
76,772 KB
testcase_27 AC 93 ms
76,788 KB
testcase_28 AC 52 ms
62,932 KB
testcase_29 AC 90 ms
77,040 KB
testcase_30 AC 94 ms
76,880 KB
testcase_31 AC 96 ms
76,692 KB
testcase_32 AC 91 ms
76,900 KB
testcase_33 AC 89 ms
76,392 KB
testcase_34 AC 90 ms
77,112 KB
testcase_35 AC 90 ms
76,988 KB
testcase_36 AC 93 ms
76,916 KB
testcase_37 AC 85 ms
76,804 KB
testcase_38 AC 103 ms
77,324 KB
testcase_39 AC 89 ms
76,936 KB
testcase_40 AC 78 ms
75,368 KB
testcase_41 AC 84 ms
77,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
a=list(map(int,input().split()))
a=[0]+a

L=[[]for i in range(N+1)]

for i in range(M):
    u,v=map(int,input().split())
    L[u].append(v)
    L[v].append(u)
ans=0
for i in range(1,N+1):
    for j in L[i]:
        for k in L[j]:
            for l in L[k]:
                if a[k]>a[j]>a[l] or a[k]>a[l]>a[j] or a[j]>a[l]>a[k] or a[l]>a[j]>a[k]:
                    ans+=1
if ans==0:
    print("NO")
else:
    print("YES")
        
0