結果

問題 No.629 グラフの中に眠る門松列
ユーザー ssmkzkssmkzk
提出日時 2019-06-25 19:47:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 788 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 108,648 KB
最終ジャッジ日時 2024-06-23 06:08:09
合計ジャッジ時間 19,694 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 509 ms
108,648 KB
testcase_01 AC 519 ms
44,364 KB
testcase_02 AC 509 ms
46,196 KB
testcase_03 AC 509 ms
44,108 KB
testcase_04 AC 511 ms
44,620 KB
testcase_05 AC 519 ms
44,104 KB
testcase_06 AC 509 ms
44,488 KB
testcase_07 AC 512 ms
44,228 KB
testcase_08 AC 482 ms
44,616 KB
testcase_09 AC 497 ms
44,748 KB
testcase_10 AC 515 ms
44,228 KB
testcase_11 AC 502 ms
44,488 KB
testcase_12 AC 505 ms
44,492 KB
testcase_13 AC 494 ms
43,972 KB
testcase_14 AC 504 ms
44,240 KB
testcase_15 AC 492 ms
44,228 KB
testcase_16 AC 503 ms
44,496 KB
testcase_17 AC 523 ms
44,356 KB
testcase_18 AC 497 ms
45,952 KB
testcase_19 AC 496 ms
44,108 KB
testcase_20 AC 518 ms
46,216 KB
testcase_21 TLE -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
import sys

N, M = map(int, input().split())
l = list(map(int, input().split())) 

A = np.zeros((N,N))

for i in range(M):
    node1, node2 = map(int, input().split())
    A[node1 - 1, node2 - 1] = 1
    A[node2 - 1, node1 - 1] = 1

AA = np.dot(A,A)


for i in range(N):
    for j in range(i + 1, N):
        if AA[i, j] > 0:
            ck = A[i] + A[j]
            for k in range(N):
                if ck[k] == 2:
                    if max(l[k],l[i],l[j]) == l[k] and len(set([l[k],l[i],l[j]])) == 3:
                        print("YES")
                        sys.exit()
                    if min(l[k],l[i],l[j]) == l[k] and len(set([l[k],l[i],l[j]])) == 3:
                        print("YES")
                        sys.exit()
                    
print("NO")
0