摘要:
题目描述 Description有n堆石子排成一列,每堆石子有一个重量w[i], 每次合并可以合并相邻的两堆石子,一次合并的代价为两堆石子的重量和w[i]+w[i+1]。问安排怎样的合并顺序,能够使得总合并代价达到最小。输入描述 Input Description第一行一个整数n(nfmin[i,j... 阅读全文
摘要:
type thash=^node; node=record state:longint; next:thash; end;var a,i:longint; p:thash; hash:array[0..11]of thash; //Hash表procedure inse... 阅读全文