Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
99603 王为治 紧急集合 C++ 解答错误 10 618 MS 336 KB 479 2023-08-23 12:31:20

Tests(1/10):


#include <bits/stdc++.h> #define int long long using namespace std; priority_queue<int> q; int n,x,ans=0,tmp; int a[114514]; signed main() { cin >> n; for(int i = 1; i <= n; i++) { cin >> x; //q.push(x); a[i] = x; } /* for(int i = n; i >= 1; i--) { a[i] = q.top(); q.pop(); } */ sort(a+1,a+n+1); for(int i = 2; i <= n; i++) { ans += a[i]+a[i-1]; a[i]=a[i]+a[i-1]; sort(a+i+1,a+n+1); } cout << ans << endl; return 0; }


测评信息: