結果

問題 No.812 Change of Class
ユーザー 👑 obakyanobakyan
提出日時 2019-05-08 23:49:52
言語 Lua
(LuaJit 2.1.1696795921)
結果
WA  
実行時間 -
コード長 852 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 47,360 KB
最終ジャッジ日時 2024-06-12 21:00:50
合計ジャッジ時間 17,652 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 213 ms
45,568 KB
testcase_01 AC 35 ms
8,448 KB
testcase_02 AC 115 ms
24,576 KB
testcase_03 AC 261 ms
47,360 KB
testcase_04 AC 222 ms
45,952 KB
testcase_05 AC 934 ms
46,336 KB
testcase_06 AC 750 ms
29,696 KB
testcase_07 AC 8 ms
6,940 KB
testcase_08 AC 5 ms
6,940 KB
testcase_09 WA -
testcase_10 AC 860 ms
42,240 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 WA -
testcase_16 AC 21 ms
6,944 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 406 ms
23,296 KB
testcase_20 WA -
testcase_21 AC 329 ms
22,400 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 677 ms
29,056 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 57 ms
8,576 KB
testcase_30 AC 456 ms
26,752 KB
testcase_31 AC 438 ms
24,960 KB
testcase_32 AC 138 ms
13,056 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 29 ms
6,944 KB
testcase_37 AC 230 ms
15,872 KB
testcase_38 AC 12 ms
7,296 KB
testcase_39 AC 219 ms
16,128 KB
testcase_40 WA -
testcase_41 AC 10 ms
6,940 KB
testcase_42 AC 627 ms
29,312 KB
testcase_43 WA -
testcase_44 AC 434 ms
25,728 KB
testcase_45 AC 29 ms
6,940 KB
testcase_46 WA -
testcase_47 AC 426 ms
25,344 KB
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 66 ms
8,960 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 47 ms
7,192 KB
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 AC 1 ms
6,940 KB
testcase_61 WA -
testcase_62 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

local ior = io.input()
local n, m = ior:read("*n", "*n")
local t = {}
for i = 1, n do t[i] = {} end
for i = 1, m do
  local a, b = ior:read("*n", "*n")
  t[a][b], t[b][a] = true, true
end
local map = {}
local q = ior:read("*n")
for i = 1, q do
  local fst = ior:read("*n")
  for j = 1, n do map[j] = -2 end
  map[fst] = -1
  local tasks = {fst}
  local tasknum = 1
  local done = 0
  local friendnum, day = 0, 0
  while(done < tasknum) do
    done = done + 1
    local curidx = tasks[done]
    for k, v in pairs(t[curidx]) do
      if(map[k] == -2) then
        map[k] = map[curidx] + 1
        friendnum, day = friendnum + 1, map[k]
        tasknum = tasknum + 1
        tasks[tasknum] = k
      end
    end
  end
  local i_d = 0
  local mult = 1
  while(mult < day) do
    i_d = i_d + 1
    mult = mult * 2
  end
  print(friendnum .. " " .. i_d)
end
0