[理工] 108交大资演 23小题

楼主: jacksoncsie (资工肥宅)   2021-12-25 00:48:55
https://i.imgur.com/3qPTUj3.jpg
https://i.imgur.com/EzJ47yM.jpg
问这题,前情提要答案是 D
而原题答案 X = 91
(4 + 4) + 8 + (5 + 4) + (3 + 5)
= (8 + 8) + (9 + 8) = (16 + 17)
→ 8 + 9 + 8 + 16 + 17 +33 = 91
我是想问算法实作的部分,
看之前上讨论只说可以用 matrix chain 类似方式去求解,
而 matrix chain 最快可在 O(n lg n )下实作
该篇算法
http://i.stanford.edu/pub/cstr/reports/cs/tr/81/875/CS-TR-81-875.pdf
以下是我的想法 :
Find_Small_Intermediate_Sum(int *list, int list_size)
Sequential search list, determine the total size is odd or even
if(list_size % 2 == 0){
Divide the list into group, which group size is 2
Calculate the sum for the each group, put it into the list
Find_Small_Intermediate(list, list_size / 2)
}else{
list \ the biggest one // Don't calculate the biggest one
Divide the list into group, which group size is 2
Calculate the sum for the each group, put it into the list
Find_Small_Intermediate(list, list_size / 2)
}
# 算法步骤
1. Split the list // O(log n)
2. 判断总数为何 若为基数 先去除最大项, 偶数不变 // O(n)
3. 接下来依剩下储存值与相临数值相加之后 merge // O(n)
有问题欢迎指证 感恩
作者: FRAXIS (喔喔)   2021-12-25 12:46:00
你假设 list size 是 2 的次方数..你的方法会考虑最佳解是先加第二元素和第三个吗?感觉你的方法不会认定第二个和第三个元素会相邻
楼主: jacksoncsie (资工肥宅)   2021-12-25 13:17:00
F大你好,之前也是看你有回复同样问题才想上来问的第3项由于是最大值,且总数是基数所以我打算先不加此项,有点像merge sort判断说如是基数项,则直接mapping到下阶段的阵列而关于算法实作的部分,我是有2个准则https://i.imgur.com/AkO95SC.png我的树大概画成这样https://i.imgur.com/zrLIXTR.jpgroot 是 33 写错
作者: mathtsai (mathtsai)   2021-12-26 11:55:00
这题一脸dp(?)
作者: FRAXIS (喔喔)   2021-12-27 11:51:00
这题如果是用 DP, 你可以很容易说明为什么所有可能都会被考虑到 最基本的形式会是 O(n^3) 时间复杂度如果要加速 你必须要说明你节省的地方是不可能会有最佳解
楼主: jacksoncsie (资工肥宅)   2021-12-27 22:21:00
了解 之前看讨论也是说用DP 不过我这感觉像Greedy霍夫曼树的变形 :(

Links booklink

Contact Us: admin [ a t ] ucptt.com