Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
169928 简晨希1314 紧急集合 C++ 通过 100 5 MS 304 KB 409 2024-08-20 20:20:45

Tests(10/10):


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


测评信息: