合并果子(优先队列2种)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了合并果子(优先队列2种)相关的知识,希望对你有一定的参考价值。
这个 第一次学优先队列priority_queue 默认数字大的优先级大 所以果子最小 就是要*-1一下
当然第二种是自定义优先级。(记住格式写法!!)
1 #include<iostream> 2 #include<cstdio> 3 #include<queue> 4 using namespace std; 5 priority_queue<int>que;//这样的优先队列 :越小的整数优先级越低的优先队列 6 int main() 7 { 8 int n,a; 9 cin>>n; 10 for(i=1;i<=n;i++) 11 { 12 cin>>a; 13 que.push(-a); 14 } 15 for(i=2;i<=n;i++) 16 { 17 a=que.top();//最小的果子 18 que.pop(); 19 a+=que.top();//最小的两个合并 20 que.pop(); 21 q.push(a); 22 ans+=a; 23 } 24 //全部用负的是因为priority大的优先。 25 cout<<-ans<<endl; 26 return 0; 27 }
记住:优先队列是用top(),不是front();
1 #include<cstdio> 2 #include<iostream> 3 #include<queue> 4 using namespace std; 5 struct cmp 6 { 7 bool operator()(const int a,const int b) const 8 { 9 return a>b; 10 } 11 }; 12 priority_queue<int,vector<int>,cmp>que; 13 14 int n,ans,a,i; 15 int main() 16 { 17 cin>>n; 18 for(i=1;i<=n;i++) 19 { 20 cin>>a; 21 que.push(a); 22 } 23 for(i=2;i<=n;i++) 24 { 25 a=que.top(); 26 que.pop(); 27 a+=que.top(); 28 que.pop(); 29 que.push(a); 30 ans+=a; 31 } 32 cout<<ans; 33 return 0; 34 }
以上是关于合并果子(优先队列2种)的主要内容,如果未能解决你的问题,请参考以下文章