結果
問題 | No.90 品物の並び替え |
ユーザー | 👑 obakyan |
提出日時 | 2019-05-05 21:57:09 |
言語 | Lua (LuaJit 2.1.1696795921) |
結果 |
AC
|
実行時間 | 654 ms / 5,000 ms |
コード長 | 1,069 bytes |
コンパイル時間 | 158 ms |
コンパイル使用メモリ | 6,812 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-26 03:55:18 |
合計ジャッジ時間 | 1,745 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 86 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 12 ms
6,940 KB |
testcase_04 | AC | 13 ms
6,940 KB |
testcase_05 | AC | 65 ms
6,944 KB |
testcase_06 | AC | 84 ms
6,940 KB |
testcase_07 | AC | 4 ms
6,944 KB |
testcase_08 | AC | 1 ms
6,944 KB |
testcase_09 | AC | 654 ms
6,940 KB |
ソースコード
local n, m = io.read("*n", "*n") local scores = {} for i = 1, n do scores[i] = {} end for i = 1, m do local a, b, c = io.read("*n", "*n", "*n") scores[a + 1][b + 1] = c end local tot = 1 for i = 2, n do tot = tot * i end local function getpattern(n, patall, idx) local used = {} local retary = {} local div = patall for i = 1, n do used[i] = false end for i = n, 1, -1 do div = math.floor(div / i) local v_idx = math.floor(idx / div) idx = idx % div local tmp_idx = 0 for j = 1, n do if(not used[j]) then if(tmp_idx == v_idx) then table.insert(retary, j) used[j] = true break else tmp_idx = tmp_idx + 1 end end end end return retary end local highsc = 0 local mma = math.max for i = 0, tot - 1 do local tbl = getpattern(n, tot, i) local sc = 0 for j = 1, n - 1 do for k = j + 1, n do if(scores[tbl[j]][tbl[k]] ~= nil) then sc = sc + scores[tbl[j]][tbl[k]] end end end highsc = mma(highsc, sc) end print(highsc)