結果
問題 | No.629 グラフの中に眠る門松列 |
ユーザー | rlangevin |
提出日時 | 2023-01-15 01:45:15 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 799 bytes |
コンパイル時間 | 1,067 ms |
コンパイル使用メモリ | 81,792 KB |
実行使用メモリ | 85,888 KB |
最終ジャッジ日時 | 2024-06-08 01:32:36 |
合計ジャッジ時間 | 7,142 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
57,472 KB |
testcase_01 | AC | 38 ms
51,968 KB |
testcase_02 | AC | 38 ms
52,096 KB |
testcase_03 | AC | 37 ms
51,712 KB |
testcase_04 | AC | 37 ms
52,096 KB |
testcase_05 | AC | 36 ms
51,840 KB |
testcase_06 | AC | 38 ms
51,968 KB |
testcase_07 | AC | 35 ms
51,968 KB |
testcase_08 | AC | 35 ms
51,968 KB |
testcase_09 | AC | 36 ms
52,224 KB |
testcase_10 | AC | 38 ms
51,840 KB |
testcase_11 | AC | 38 ms
52,096 KB |
testcase_12 | AC | 37 ms
51,968 KB |
testcase_13 | AC | 36 ms
51,840 KB |
testcase_14 | AC | 37 ms
52,096 KB |
testcase_15 | AC | 35 ms
52,096 KB |
testcase_16 | AC | 36 ms
52,224 KB |
testcase_17 | AC | 35 ms
51,712 KB |
testcase_18 | AC | 35 ms
52,096 KB |
testcase_19 | AC | 34 ms
51,712 KB |
testcase_20 | AC | 35 ms
51,584 KB |
testcase_21 | AC | 267 ms
75,776 KB |
testcase_22 | AC | 42 ms
54,272 KB |
testcase_23 | AC | 41 ms
54,528 KB |
testcase_24 | AC | 49 ms
61,568 KB |
testcase_25 | TLE | - |
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 | -- | - |
ソースコード
import sys sys.setrecursionlimit(10**7) readline = sys.stdin.readline 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): if len(L) == 3: if kadomatsu(A[L[0]], A[L[1]], A[L[2]]): print("YES") exit() for u in G[s]: if u in L: 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")