結果

問題 No.1477 Lamps on Graph
ユーザー 小野寺健小野寺健
提出日時 2021-04-27 08:08:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 777 ms / 2,000 ms
コード長 870 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 50,128 KB
最終ジャッジ日時 2024-07-06 00:12:31
合計ジャッジ時間 16,292 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,880 KB
testcase_01 AC 24 ms
10,880 KB
testcase_02 AC 26 ms
11,008 KB
testcase_03 AC 25 ms
11,008 KB
testcase_04 AC 32 ms
11,008 KB
testcase_05 AC 25 ms
10,880 KB
testcase_06 AC 24 ms
11,008 KB
testcase_07 AC 24 ms
11,008 KB
testcase_08 AC 25 ms
10,880 KB
testcase_09 AC 25 ms
10,880 KB
testcase_10 AC 24 ms
10,880 KB
testcase_11 AC 24 ms
11,008 KB
testcase_12 AC 434 ms
30,704 KB
testcase_13 AC 381 ms
30,448 KB
testcase_14 AC 517 ms
33,332 KB
testcase_15 AC 264 ms
20,352 KB
testcase_16 AC 152 ms
21,564 KB
testcase_17 AC 149 ms
20,956 KB
testcase_18 AC 361 ms
40,904 KB
testcase_19 AC 337 ms
31,000 KB
testcase_20 AC 171 ms
17,408 KB
testcase_21 AC 300 ms
35,832 KB
testcase_22 AC 142 ms
14,464 KB
testcase_23 AC 337 ms
22,380 KB
testcase_24 AC 553 ms
39,280 KB
testcase_25 AC 236 ms
19,456 KB
testcase_26 AC 486 ms
39,520 KB
testcase_27 AC 290 ms
22,364 KB
testcase_28 AC 326 ms
27,708 KB
testcase_29 AC 317 ms
25,128 KB
testcase_30 AC 178 ms
26,312 KB
testcase_31 AC 151 ms
22,176 KB
testcase_32 AC 683 ms
49,976 KB
testcase_33 AC 661 ms
50,096 KB
testcase_34 AC 624 ms
50,128 KB
testcase_35 AC 777 ms
49,536 KB
testcase_36 AC 747 ms
48,552 KB
testcase_37 AC 675 ms
46,644 KB
testcase_38 AC 689 ms
46,676 KB
testcase_39 AC 724 ms
48,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Peek:
    def __init__(self, i, A):
        self.i = i
        self.A = A
        self.V = []
        self.B = False
    def __str__(self):
        return str(self.i) + ":" + str(self.A) + "," + str(self.B) + "," + str(self.V)
        
N, M = map(int, input().split())

A = []
for i, a in enumerate(list(map(int, input().split()))):
    A.append(Peek(i, a))
    
for _ in range(M):
    u, v = map(int, input().split())
    A[u-1].V.append(v-1)
    A[v-1].V.append(u-1)
    
K = int(input())
for b in list(map(int, input().split())):
    A[b-1].B = True

S = sorted(A, key=lambda x: x.A)

op = []
for p in S:
    if p.B :
        p.B = False
        op.append(p.i+1)
        for i in p.V:
            if p.A < A[i].A:
                A[i].B = not A[i].B
            
if any([i.B for i in A]):
    print(-1)
else:
    print(len(op))
    for p in op:
        print(p)
0