結果

問題 No.1477 Lamps on Graph
ユーザー yuruhiyayuruhiya
提出日時 2021-04-17 15:55:16
言語 Crystal
(1.11.2)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 329 bytes
コンパイル時間 15,308 ms
コンパイル使用メモリ 298,048 KB
実行使用メモリ 19,800 KB
最終ジャッジ日時 2024-07-03 23:27:52
合計ジャッジ時間 21,576 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 72 ms
8,832 KB
testcase_13 AC 63 ms
9,088 KB
testcase_14 AC 89 ms
10,940 KB
testcase_15 AC 44 ms
6,944 KB
testcase_16 AC 24 ms
7,552 KB
testcase_17 AC 22 ms
6,940 KB
testcase_18 AC 62 ms
15,168 KB
testcase_19 AC 55 ms
10,880 KB
testcase_20 AC 26 ms
6,940 KB
testcase_21 AC 50 ms
12,416 KB
testcase_22 AC 19 ms
6,940 KB
testcase_23 AC 56 ms
6,940 KB
testcase_24 AC 94 ms
11,776 KB
testcase_25 AC 38 ms
6,940 KB
testcase_26 AC 83 ms
12,672 KB
testcase_27 AC 46 ms
6,944 KB
testcase_28 AC 53 ms
8,576 KB
testcase_29 AC 51 ms
7,040 KB
testcase_30 AC 33 ms
9,600 KB
testcase_31 AC 25 ms
7,936 KB
testcase_32 AC 123 ms
19,800 KB
testcase_33 AC 114 ms
19,416 KB
testcase_34 AC 82 ms
15,324 KB
testcase_35 AC 133 ms
15,456 KB
testcase_36 AC 132 ms
15,356 KB
testcase_37 AC 118 ms
14,720 KB
testcase_38 AC 120 ms
14,720 KB
testcase_39 AC 130 ms
15,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def r;read_line.split.map &.to_i;end
n,m=r
a=r
g=a.map{[]of Int32}
m.times{
	u,v=r.map &.pred
	g[v]<<u if a[u]>a[v]
	g[u]<<v if a[v]>a[u]
}
r
f=[0]*n
r.each{|i|f[i-1]=1}

ans=(0...n).to_a.sort_by{|i|a[i]}.select{|i|
	if f[i]>0
		f[i]=0
		g[i].map{|j|f[j]^=1}
	end
}
if f.all? 0
	puts ans.size,ans.join '\n',&.succ
else
	p -1
end
0