Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
108268 陈志轩 数列极差问题 C++ 通过 100 0 MS 264 KB 624 2023-11-01 13:59:12

Tests(3/3):


#include<bits/stdc++.h> #define int long long using namespace std; int a[50005]; signed main(){ int n; while (cin>>n){ if (n == 0){ break; } priority_queue <int> p; priority_queue <int,vector <int>,greater <int> > q; for (int i = 1;i <= n;i++){ cin>>a[i]; p.push(a[i]); q.push(a[i]); } while (p.size() >= 2){ int a = p.top(); p.pop(); int b = p.top(); p.pop(); p.push(a * b + 1); } while (q.size() >= 2){ int a = q.top(); q.pop(); int b = q.top(); q.pop(); q.push(a * b + 1); } cout<<q.top() - p.top()<<'\n'; } return 0; }


测评信息: