- 论坛徽章:
- 5
|
本帖最后由 starwing83 于 2012-05-03 11:13 编辑
这个题本身不满足最优化原则,我也没找到能满足最优化原则的预处理,估计是不能dp了,老实搜索吧……下面是Lua版本的:- local function dfs(t, lim)
- local len = #t
- local function search_(i, lim, a, b)
- if i == lim then return coroutine.yield(a+b) end
- search_(i+1, lim, a+b, t[i+1])
- search_(i+1, lim, a, b*10+t[i+1])
- end
- local function iter(i, lim, a, b)
- return coroutine.wrap(function() return search_(i, lim, a, b) end)
- end
- local results = {}
- for lv in iter(1, lim, 0, t[1]) do
- results[lv] = true
- end
- for rv in iter(lim+1, len, 0, t[lim+1]) do
- if results[rv] then
- return rv
- end
- end
- end
- local function print_result(t, lim, result)
- local function search_(i, lim, a, b, way)
- if i == lim then
- if a+b == result then coroutine.yield(way..b) end
- return
- end
- search_(i+1, lim, a+b, t[i+1], way..b.." + ")
- search_(i+1, lim, a, b*10+t[i+1], way)
- end
- local function iter(i, lim, a, b)
- return coroutine.wrap(function() return search_(i, lim, a, b, "") end)
- end
- for wl in iter(1, lim, 0, t[1]) do
- for wr in iter(lim+1, #t, 0, t[lim+1]) do
- print(wl.." = "..wr)
- end
- end
- end
- local function sum(t, a, b)
- local s = 0
- for i = a, b do
- s = s + t[i]
- end
- return s
- end
- local function solve(t)
- local len = #t
- for i = 1, len-1 do
- if sum(t, 1, i)%3 == sum(t, i+1, len)%3 then
- local res = dfs(t, i)
- if res then
- print_result(t, i, res)
- end
- end
- end
- end
- solve {1, 1, 1, 2, 2, 3, 6, 7}
复制代码 输出:
lua -- "noname\2012-05-03-1.lua"
1 + 1 + 12 + 2 = 3 + 6 + 7
1 + 11 + 2 + 2 = 3 + 6 + 7
11 + 1 + 2 + 2 = 3 + 6 + 7
Hit any key to close this window...
这个是找所有解的,只求一个解的看着加break吧…… |
|