結果
問題 | No.1477 Lamps on Graph |
ユーザー | lie_of_lillie |
提出日時 | 2021-05-12 20:17:07 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 772 bytes |
コンパイル時間 | 862 ms |
コンパイル使用メモリ | 82,196 KB |
実行使用メモリ | 99,152 KB |
最終ジャッジ日時 | 2024-09-23 06:57:41 |
合計ジャッジ時間 | 10,807 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 45 ms
62,248 KB |
testcase_01 | AC | 43 ms
54,996 KB |
testcase_02 | AC | 42 ms
54,660 KB |
testcase_03 | AC | 42 ms
54,360 KB |
testcase_04 | AC | 42 ms
54,576 KB |
testcase_05 | AC | 43 ms
54,340 KB |
testcase_06 | AC | 43 ms
54,420 KB |
testcase_07 | AC | 42 ms
54,736 KB |
testcase_08 | AC | 43 ms
54,752 KB |
testcase_09 | AC | 43 ms
55,060 KB |
testcase_10 | AC | 43 ms
53,868 KB |
testcase_11 | AC | 45 ms
54,072 KB |
testcase_12 | AC | 1,011 ms
94,112 KB |
testcase_13 | AC | 1,476 ms
94,772 KB |
testcase_14 | AC | 1,489 ms
97,980 KB |
testcase_15 | AC | 219 ms
83,584 KB |
testcase_16 | AC | 383 ms
84,240 KB |
testcase_17 | AC | 479 ms
83,424 KB |
testcase_18 | TLE | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
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 | -- | - |
ソースコード
import collections N, M = map(int, input().split()) A = list(map(lambda x: int(x) - 1, input().split())) G = collections.defaultdict(set) for _ in range(M): v0, v1 = map(lambda x: int(x) - 1, input().split()) # 計算量の削減 if A[v0] < A[v1]: G[v0].add(v1) else: G[v1].add(v0) K = int(input()) B = list(map(lambda x: int(x) - 1, input().split())) onoff = [int(gi in B) for gi in range(N)] greedy = [(A[ai], ai) for ai in range(N)] greedy.sort() ans = [] for a, gi in greedy: if onoff[gi] != 1: continue onoff[gi] = 0 ans.append(gi) for ri in G[gi]: if A[ri] > a: onoff[ri] ^= 1 if sum(onoff) > 0: print(-1) else: print(len(ans)) print(*map(lambda x: x + 1, ans), sep='\n')