Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
167740 刘睿甫 紧急集合 C++ 通过 100 3 MS 352 KB 394 2024-08-19 17:17:45

Tests(10/10):


#include <bits/stdc++.h> #define pt p.top(); #define pp p.pop(); #define pu(a) p.push(a); using namespace std; int n,i,t,x,y,ans; priority_queue<int,vector<int>,greater<int> >p; int main() { scanf("%d",&n); for(i=1,t;i<=n;i++) { cin>>t,p.push(t); } while(p.size()!=1) { x=pt; pp; y=pt; pp; ans+=x+y; p.push(x+y); } printf("%d",ans); return 0; }


测评信息: