結果

問題 No.812 Change of Class
ユーザー 👑 obakyanobakyan
提出日時 2019-05-08 23:53:27
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 858 ms / 4,000 ms
コード長 851 bytes
コンパイル時間 112 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 47,360 KB
最終ジャッジ日時 2024-06-12 21:07:22
合計ジャッジ時間 16,238 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 208 ms
45,568 KB
testcase_01 AC 34 ms
8,448 KB
testcase_02 AC 112 ms
24,576 KB
testcase_03 AC 253 ms
47,360 KB
testcase_04 AC 213 ms
45,952 KB
testcase_05 AC 858 ms
46,336 KB
testcase_06 AC 664 ms
29,696 KB
testcase_07 AC 8 ms
6,272 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 734 ms
41,216 KB
testcase_10 AC 760 ms
42,240 KB
testcase_11 AC 31 ms
13,184 KB
testcase_12 AC 432 ms
26,112 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 496 ms
26,752 KB
testcase_16 AC 20 ms
5,376 KB
testcase_17 AC 440 ms
25,216 KB
testcase_18 AC 315 ms
22,528 KB
testcase_19 AC 347 ms
23,296 KB
testcase_20 AC 815 ms
44,032 KB
testcase_21 AC 289 ms
22,400 KB
testcase_22 AC 97 ms
12,416 KB
testcase_23 AC 15 ms
5,376 KB
testcase_24 AC 26 ms
5,376 KB
testcase_25 AC 75 ms
8,960 KB
testcase_26 AC 622 ms
29,056 KB
testcase_27 AC 569 ms
28,288 KB
testcase_28 AC 354 ms
22,784 KB
testcase_29 AC 58 ms
8,576 KB
testcase_30 AC 434 ms
26,752 KB
testcase_31 AC 391 ms
24,960 KB
testcase_32 AC 127 ms
13,056 KB
testcase_33 AC 486 ms
26,240 KB
testcase_34 AC 24 ms
5,376 KB
testcase_35 AC 61 ms
8,576 KB
testcase_36 AC 29 ms
6,144 KB
testcase_37 AC 207 ms
15,872 KB
testcase_38 AC 12 ms
7,296 KB
testcase_39 AC 212 ms
16,128 KB
testcase_40 AC 42 ms
7,552 KB
testcase_41 AC 10 ms
6,656 KB
testcase_42 AC 582 ms
29,312 KB
testcase_43 AC 56 ms
11,392 KB
testcase_44 AC 384 ms
25,728 KB
testcase_45 AC 28 ms
5,760 KB
testcase_46 AC 51 ms
11,008 KB
testcase_47 AC 392 ms
25,344 KB
testcase_48 AC 392 ms
24,320 KB
testcase_49 AC 78 ms
9,216 KB
testcase_50 AC 5 ms
5,376 KB
testcase_51 AC 66 ms
8,960 KB
testcase_52 AC 163 ms
15,104 KB
testcase_53 AC 51 ms
8,320 KB
testcase_54 AC 47 ms
8,320 KB
testcase_55 AC 129 ms
26,240 KB
testcase_56 AC 168 ms
44,416 KB
testcase_57 AC 176 ms
44,800 KB
testcase_58 AC 92 ms
23,936 KB
testcase_59 AC 197 ms
45,952 KB
testcase_60 AC 1 ms
5,376 KB
testcase_61 AC 1 ms
5,376 KB
testcase_62 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

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] = -1 end
  map[fst] = 0
  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] == -1) 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