結果

問題 No.629 グラフの中に眠る門松列
ユーザー 👑 rin204rin204
提出日時 2022-01-19 21:13:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 465 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 71,040 KB
最終ジャッジ日時 2024-05-02 19:58:32
合計ジャッジ時間 4,276 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
51,840 KB
testcase_01 WA -
testcase_02 AC 45 ms
51,968 KB
testcase_03 AC 45 ms
51,584 KB
testcase_04 AC 45 ms
52,096 KB
testcase_05 AC 47 ms
51,712 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 44 ms
51,712 KB
testcase_10 AC 44 ms
51,840 KB
testcase_11 AC 43 ms
51,712 KB
testcase_12 AC 44 ms
51,712 KB
testcase_13 AC 42 ms
51,712 KB
testcase_14 WA -
testcase_15 AC 44 ms
51,584 KB
testcase_16 AC 42 ms
51,584 KB
testcase_17 AC 41 ms
51,712 KB
testcase_18 AC 42 ms
52,096 KB
testcase_19 AC 44 ms
51,840 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 64 ms
62,464 KB
testcase_23 AC 62 ms
62,080 KB
testcase_24 AC 77 ms
69,248 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 80 ms
69,632 KB
testcase_28 WA -
testcase_29 AC 80 ms
68,992 KB
testcase_30 AC 78 ms
69,632 KB
testcase_31 AC 76 ms
69,632 KB
testcase_32 AC 83 ms
70,016 KB
testcase_33 WA -
testcase_34 AC 76 ms
68,864 KB
testcase_35 AC 76 ms
68,608 KB
testcase_36 AC 78 ms
69,632 KB
testcase_37 WA -
testcase_38 AC 83 ms
71,040 KB
testcase_39 AC 77 ms
68,864 KB
testcase_40 WA -
testcase_41 AC 73 ms
68,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
A = list(map(int, input().split()))
up = [set() for _ in range(n)]
down = [set() for _ in range(n)]

for _ in range(m):
    u, v = map(int, input().split())
    u -= 1
    v -= 1
    if A[u] < A[v]:
        up[u].add(v)
        down[v].add(u)
    elif A[u] > A[v]:
        up[v].add(u)
        down[u].add(v)
        
for i in range(n):
    if len(up) >= 2 or len(down) >= 2:
        print("YES")
        break
else:
    print("NO")
0