結果
問題 | No.943 取り調べ |
ユーザー | 👑 obakyan |
提出日時 | 2021-06-10 21:50:09 |
言語 | Lua (LuaJit 2.1.1696795921) |
結果 |
AC
|
実行時間 | 541 ms / 1,206 ms |
コード長 | 1,817 bytes |
コンパイル時間 | 132 ms |
コンパイル使用メモリ | 6,940 KB |
実行使用メモリ | 13,312 KB |
最終ジャッジ日時 | 2024-05-07 15:15:00 |
合計ジャッジ時間 | 4,486 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 520 ms
13,312 KB |
testcase_05 | AC | 517 ms
13,312 KB |
testcase_06 | AC | 502 ms
13,312 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 520 ms
13,312 KB |
testcase_09 | AC | 126 ms
5,760 KB |
testcase_10 | AC | 126 ms
5,632 KB |
testcase_11 | AC | 62 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 4 ms
5,376 KB |
testcase_14 | AC | 6 ms
5,376 KB |
testcase_15 | AC | 3 ms
5,376 KB |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | AC | 127 ms
5,632 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 4 ms
5,376 KB |
testcase_20 | AC | 3 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 137 ms
5,888 KB |
testcase_23 | AC | 541 ms
13,312 KB |
ソースコード
local mmi, mma = math.min, math.max local bls, brs = bit.lshift, bit.rshift local function bdp_prepare(n, t, a) local tot = bls(1, n) local alltask = {} local stagetask = {} for i = 1, n do stagetask[i] = {} end for i = 1, tot - 1 do alltask[i] = 1000000007 end for i = 1, tot - 1 do local ti = i local cnt = 0 for j = 1, n do if ti % 2 == 1 then cnt = cnt + 1 end ti = brs(ti, 1) end table.insert(stagetask[cnt], i) end local tmp = 1 for i = 1, n do if #t[i] == 0 then alltask[tmp] = 0 else alltask[tmp] = a[i] end tmp = tmp * 2 end return tot, alltask, stagetask end local function bdp_doall(n, alltask, stagetask, t, a) for stage = 1, n - 1 do local stlen = #stagetask[stage] for i_stagetask = 1, stlen do local used = stagetask[stage][i_stagetask] local mul = 1 local tmp = used local b = {} local c = {} for j = 1, n do if tmp % 2 == 0 then table.insert(c, j) else b[j] = true end tmp = brs(tmp, 1) mul = mul * 2 end for j = 1, #c do local tgt = c[j] local cost = 0 for k = 1, #t[tgt] do if not b[ t[tgt][k] ] then cost = a[tgt] break end end local dst = used + bls(1, tgt - 1) alltask[dst] = mmi(alltask[dst], alltask[used] + cost) end end end end local n = io.read("*n") local t = {} for i = 1, n do t[i] = {} for j = 1, n do local tij = io.read("*n") if tij == 1 then table.insert(t[i], j) end end end local a = {} for i = 1, n do a[i] = io.read("*n") end local tot, alltask, stagetask = bdp_prepare(n, t, a) bdp_doall(n, alltask, stagetask, t, a) print(alltask[tot - 1])