标签:
农夫约翰为了修理栅栏,要将一块很长的木板切割成N块。准备切成的木板长度为L1,L2,L3……LN,未切割前木板的长度恰好为切割后木板长度的总和。每次切断木板时,需要的开销为这块木板的长度。请求出按照目标要求将木板切割完的最小开销是多少?例如长度为21的木板切割成长度为13和8,开销为21;把长度为13的木板切割成5和8,则开销为13,所以将长度为21的木板切割成8,5,8的三块,开销是34.
|
输入
|
第一行仅一个正整数N,第二行有N个正整数,两两之间用一个空格分隔。
|
输出
|
符合题目要求的一个正整数
|
输入示例
|
3
8 5 8 |
输出示例
|
34
|
其他说明
|
数据范围:N<=100000,Li<=10000 。
|
真是够了,我刷了11遍才对……
其实用优先队列挺好的……
#include<iostream> #include<queue> using namespace std; struct cmp {bool operator()(const long long &i,const long long &j){return i>j;}}; int read() { int x=0,f=1; char ch=getchar(); while(ch<‘0‘||ch>‘9‘) { f=-1; ch=getchar(); } while(ch>=‘0‘&&ch<=‘9‘) { x=x*10+ch-‘0‘; ch=getchar(); } return x*f; } int main() { priority_queue<long long,vector<long long>,cmp> s; int n,a; n=read(); for(int i=0;i<n;i++) { a=read(); s.push(a); } long long ans=0; while(n>=2) { int a,b; a=s.top(); s.pop(); b=s.top(); s.pop(); s.push(a+b); ans+=a+b; n--; } cout<<ans; system("pause>nul"); return 0; }
标签:
原文地址:http://www.cnblogs.com/nightfury/p/4963992.html