結果

問題 No.771 しおり
ユーザー 👑 obakyanobakyan
提出日時 2019-07-04 23:23:39
言語 Lua
(LuaJit 2.1.1696795921)
結果
TLE  
実行時間 -
コード長 1,097 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 68,796 KB
最終ジャッジ日時 2024-09-19 06:50:21
合計ジャッジ時間 6,725 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,991 ms
67,952 KB
testcase_01 AC 142 ms
8,576 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 5 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 3 ms
5,376 KB
testcase_25 AC 804 ms
30,824 KB
testcase_26 AC 14 ms
5,376 KB
testcase_27 AC 141 ms
8,704 KB
testcase_28 AC 332 ms
18,048 KB
testcase_29 AC 147 ms
8,704 KB
testcase_30 AC 1,945 ms
68,112 KB
testcase_31 AC 1,917 ms
68,084 KB
testcase_32 AC 26 ms
5,376 KB
testcase_33 AC 1,976 ms
68,796 KB
testcase_34 AC 1,905 ms
67,528 KB
testcase_35 AC 25 ms
5,376 KB
testcase_36 AC 6 ms
5,376 KB
testcase_37 AC 6 ms
5,376 KB
testcase_38 AC 25 ms
5,376 KB
testcase_39 AC 6 ms
5,376 KB
testcase_40 AC 809 ms
30,700 KB
testcase_41 AC 1,945 ms
67,928 KB
testcase_42 AC 1,930 ms
68,024 KB
testcase_43 AC 139 ms
8,704 KB
testcase_44 TLE -
testcase_45 AC 1,971 ms
68,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local mce, mfl, msq, mmi, mma = math.ceil, math.floor, math.sqrt, math.min, math.max

local n = io.read("*n")
local a, b, c = {}, {}, {}
local tot = 1
for i = 1, n do
  a[i], b[i] = io.read("*n", "*n")
  c[i] = b[i] - a[i]
  tot = tot * 2
end

local function dotask(stage, curtask)
  local nexttask = {}
  for i = 1, n do
    nexttask[i] = {}
  end
  local mul = 1
  for i = 1, n do
    for used, val in pairs(curtask[i]) do
      local tmp = used
      for j = 1, n do
        if tmp % 2 == 0 and i ~= j then
          if nexttask[j][used + mul] == nil then
            nexttask[j][used + mul] = mma(val, c[i] + a[j])
          else
            nexttask[j][used + mul] = mmi(mma(val, c[i] + a[j]), nexttask[j][used + mul])
          end
        end
        tmp = mfl(tmp / 2)
      end
    end
    mul = mul * 2
  end
  return nexttask
end

local tasks = {}
for i = 1, n do
  tasks[i] = {}
  tasks[i][0] = 0
end
for i = 2, n do
  tasks = dotask(i, tasks)
end
local min = 1000 * 100
for i = 1, n do
  for k, v in pairs(tasks[i]) do
    -- print(i, k, v)
    min = mmi(min, v)
  end
end
print(min)
0