結果

問題 No.1477 Lamps on Graph
ユーザー simansiman
提出日時 2021-11-09 09:00:40
言語 Ruby
(3.3.0)
結果
AC  
実行時間 587 ms / 2,000 ms
コード長 519 bytes
コンパイル時間 33 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 32,752 KB
最終ジャッジ日時 2024-04-28 23:08:09
合計ジャッジ時間 14,649 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
12,160 KB
testcase_01 AC 91 ms
12,288 KB
testcase_02 AC 89 ms
12,032 KB
testcase_03 AC 89 ms
12,160 KB
testcase_04 AC 89 ms
12,160 KB
testcase_05 AC 90 ms
12,032 KB
testcase_06 AC 88 ms
12,160 KB
testcase_07 AC 89 ms
12,288 KB
testcase_08 AC 89 ms
12,032 KB
testcase_09 AC 91 ms
12,288 KB
testcase_10 AC 89 ms
12,288 KB
testcase_11 AC 89 ms
12,288 KB
testcase_12 AC 337 ms
19,324 KB
testcase_13 AC 314 ms
20,840 KB
testcase_14 AC 396 ms
22,356 KB
testcase_15 AC 229 ms
15,348 KB
testcase_16 AC 162 ms
16,232 KB
testcase_17 AC 160 ms
16,460 KB
testcase_18 AC 317 ms
30,208 KB
testcase_19 AC 280 ms
21,972 KB
testcase_20 AC 179 ms
14,976 KB
testcase_21 AC 289 ms
26,240 KB
testcase_22 AC 156 ms
12,928 KB
testcase_23 AC 277 ms
16,736 KB
testcase_24 AC 434 ms
25,300 KB
testcase_25 AC 214 ms
15,360 KB
testcase_26 AC 375 ms
24,424 KB
testcase_27 AC 240 ms
16,488 KB
testcase_28 AC 273 ms
18,648 KB
testcase_29 AC 259 ms
16,964 KB
testcase_30 AC 207 ms
20,588 KB
testcase_31 AC 178 ms
16,860 KB
testcase_32 AC 587 ms
32,752 KB
testcase_33 AC 512 ms
30,836 KB
testcase_34 AC 481 ms
29,380 KB
testcase_35 AC 519 ms
29,280 KB
testcase_36 AC 504 ms
29,308 KB
testcase_37 AC 451 ms
28,020 KB
testcase_38 AC 472 ms
28,484 KB
testcase_39 AC 504 ms
29,396 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, M = gets.split.map(&:to_i)
A = gets.split.map(&:to_i)
E = Hash.new { |h, k| h[k] = [] }

M.times do
  u, v = gets.split.map(&:to_i)

  E[u] << v if A[u - 1] < A[v - 1]
  E[v] << u if A[u - 1] > A[v - 1]
end

light = Array.new(N + 1, false)
K = gets.to_i
B = gets.split.map(&:to_i)
B.each do |b|
  light[b] = true
end

ans = []
v_list = [*1..N].sort_by { |v| A[v - 1] }

v_list.each do |v|
  next if not light[v]
  light[v] = true
  ans << v

  E[v].each do |u|
    light[u] ^= true
  end
end

puts ans.size
puts ans
0