码迷,mamicode.com
首页 > 其他好文 > 详细

oj---九度oj---1107

时间:2017-06-26 16:08:40      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:break   div   scanf   push   ret   cto   tor   class   cst   

 

 

#include<cstdio>
#include<iostream>
#include<queue>
#include<map>
#include<stack>
#include<string>

using namespace std;

priority_queue<int,vector<int>,greater<int> > Q;
int main(){
    int n;
    int res;
    int a,b;
    while(scanf("%d",&n)!=EOF){
        if(n==0) break;
        while(!Q.empty()){Q.pop();}
        while(n--){
            scanf("%d",&a);
            Q.push(a);
        }
        res=0;
        while(Q.size()>1){
            a=Q.top();
            Q.pop();
            b=Q.top();
            Q.pop();
            res+=a+b;
            Q.push(a+b);
        }
        printf("%d\n",res);
    }
    return 0;
}

 

oj---九度oj---1107

标签:break   div   scanf   push   ret   cto   tor   class   cst   

原文地址:http://www.cnblogs.com/kprac/p/7080953.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!