Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
168122 Microsoft 紧急集合 C++ 编译错误 0 0 MS 0 KB 396 2024-08-19 22:49:50

Tests(0/0):


#include<bit/stdc++.h> #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; }


测评信息: