博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
poj3253
阅读量:5940 次
发布时间:2019-06-19

本文共 809 字,大约阅读时间需要 2 分钟。

/** \brief poj 3253 * * \param date 2014/8/8 * \param state AC * \return memory 1124K time 125ms * */#include 
#include
#include
#include
using namespace std;struct number{ //int x; __int64 x; bool operator < (const number& a) const{ return x>a.x;//最小值优先 }};priority_queue
que;//int total,mincost;__int64 total,mincost;int main(){ //cout << "Hello world!" << endl; //freopen("input.txt","r",stdin); int n; while(scanf("%d",&n)!=EOF) { number num; for(int i=0;i
>v; num.x=v; que.push(num); } mincost=0; total=0; while(que.size()>1) { number v1,v2,temp; v1=que.top(); que.pop(); v2=que.top(); que.pop(); total=(v1.x+v2.x); temp.x=total; que.push(temp); mincost+=total; } cout<
<

转载地址:http://gqmtx.baihongyu.com/

你可能感兴趣的文章
NopCommerce架构分析之八------多语言
查看>>
转:Eclipse自动补全功能轻松设置
查看>>
ES6新特性:Javascript中的Reflect对象
查看>>
hibernate逆向工程生成的实体映射需要修改
查看>>
mysql update操作
查看>>
Robots.txt - 禁止爬虫(转)
查看>>
MySQL数据库
查看>>
项目分析_xxoo-master
查看>>
SQLServer2012自增列值跳跃的问题
查看>>
ViewBag对象的更改
查看>>
Mysql 监视工具
查看>>
hdu1025 Constructing Roads In JGShining&#39;s Kingdom(二分+dp)
查看>>
Android PullToRefreshListView和ViewPager的结合使用
查看>>
禅修笔记——硅谷最受欢迎的情商课
查看>>
struts2入门(搭建环境、配置、示例)
查看>>
Caused by: org.apache.ibatis.reflection.ReflectionException我碰到的情况,原因不唯一
查看>>
linux top命令查看内存及多核CPU的使用讲述【转】
查看>>
Linux下golang开发环境搭建
查看>>
jQuery操作input
查看>>
layer弹出信息框API
查看>>