結果

問題 No.1477 Lamps on Graph
ユーザー 👑 obakyanobakyan
提出日時 2021-08-11 20:21:53
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 227 ms / 2,000 ms
コード長 779 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 6,940 KB
実行使用メモリ 19,072 KB
最終ジャッジ日時 2024-09-25 06:42:49
合計ジャッジ時間 8,123 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,812 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 117 ms
9,856 KB
testcase_13 AC 108 ms
9,728 KB
testcase_14 AC 138 ms
10,752 KB
testcase_15 AC 58 ms
6,940 KB
testcase_16 AC 56 ms
7,680 KB
testcase_17 AC 50 ms
6,940 KB
testcase_18 AC 148 ms
15,488 KB
testcase_19 AC 116 ms
10,368 KB
testcase_20 AC 39 ms
6,940 KB
testcase_21 AC 130 ms
13,696 KB
testcase_22 AC 24 ms
6,944 KB
testcase_23 AC 73 ms
6,944 KB
testcase_24 AC 164 ms
12,032 KB
testcase_25 AC 50 ms
6,940 KB
testcase_26 AC 167 ms
14,848 KB
testcase_27 AC 70 ms
6,944 KB
testcase_28 AC 101 ms
9,344 KB
testcase_29 AC 79 ms
7,168 KB
testcase_30 AC 73 ms
9,216 KB
testcase_31 AC 59 ms
8,064 KB
testcase_32 AC 227 ms
19,072 KB
testcase_33 AC 210 ms
17,664 KB
testcase_34 AC 170 ms
16,000 KB
testcase_35 AC 226 ms
17,280 KB
testcase_36 AC 226 ms
17,152 KB
testcase_37 AC 210 ms
16,640 KB
testcase_38 AC 218 ms
16,896 KB
testcase_39 AC 226 ms
17,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local n, m = io.read("*n", "*n")
local a = {}
local aidx = {}
for i = 1, n do
  a[i] = io.read("*n")
  aidx[i] = i
end
table.sort(aidx, function(x, y) return a[x] < a[y] end)
local edge = {}
for i = 1, n do
  edge[i] = {}
end
for i = 1, m do
  local x, y = io.read("*n", "*n")
  if a[x] < a[y] then
    table.insert(edge[x], y)
  elseif a[y] < a[x] then
    table.insert(edge[y], x)
  end
end
local flag = {}
for i = 1, n do
  flag[i] = false
end
local k = io.read("*n")
for i = 1, k do
  local z = io.read("*n")
  flag[z] = true
end
local ret = {}
for ia = 1, n do
  local i = aidx[ia]
  if flag[i] then
    table.insert(ret, i)
    for j = 1, #edge[i] do
      local dst = edge[i][j]
      flag[dst] = not flag[dst]
    end
  end
end
print(#ret)
print(table.concat(ret, "\n"))
0