結果

問題 No.807 umg tours
ユーザー 👑 obakyanobakyan
提出日時 2019-04-28 21:42:12
言語 Lua
(LuaJit 2.1.1696795921)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 938 bytes
コンパイル時間 512 ms
コンパイル使用メモリ 7,068 KB
実行使用メモリ 30,600 KB
最終ジャッジ日時 2024-05-02 23:49:55
合計ジャッジ時間 10,312 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 360 ms
19,968 KB
testcase_12 AC 223 ms
20,328 KB
testcase_13 AC 335 ms
24,404 KB
testcase_14 AC 127 ms
12,740 KB
testcase_15 AC 103 ms
10,752 KB
testcase_16 AC 378 ms
25,336 KB
testcase_17 AC 422 ms
28,308 KB
testcase_18 AC 510 ms
30,600 KB
testcase_19 AC 454 ms
30,592 KB
testcase_20 AC 180 ms
20,352 KB
testcase_21 AC 189 ms
20,736 KB
testcase_22 AC 70 ms
11,008 KB
testcase_23 AC 55 ms
9,472 KB
testcase_24 TLE -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

ior = io.read
local n, m = ior("*n", "*n")
local costs = {}
for i = 1, n do costs[i] = {} end
for i = 1, m do
  local a, b, c = ior("*n", "*n", "*n")
  costs[a][b], costs[b][a] = c, c
end
local inf = 99999999999999
local straight = {}
local warp = {}
straight[1], warp[1] = 0, 0
for i = 2, n do straight[i], warp[i] = inf, inf end
local cue = {}
cue[1] = 1
local done, tasks = 0, 1
local mmi = math.min
while(done < tasks) do
  done = done + 1
  local src = cue[done]
  for k, v in pairs(costs[src]) do
    local added = false
    if(straight[src] + v < straight[k]) then
      straight[k] = straight[src] + v
      added = true
      tasks = tasks + 1
      table.insert(cue, k)
    end
    local w = mmi(warp[src] + v, straight[src])
    if(w < warp[k]) then
      warp[k] = w
      if(not added) then
        tasks = tasks + 1
        table.insert(cue, k)
      end
    end
  end
end
for i = 1, n do
  print(straight[i] + warp[i])
end
0