QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#238356 | #5693. 众数 | to_the_immaculate | WA | 12ms | 3784kb | C++14 | 949b | 2023-11-04 16:30:06 | 2023-11-04 16:30:06 |
Judging History
answer
#include<iostream>
#include<vector>
using namespace std;
const int N = 1e5 + 10;
int a[N];
vector<pair<int,int> > ve;
signed main()
{
int n;
cin >> n;
for(int i = 1; i <= n; i ++) cin >> a[i];
long long ans = 0;
ans += a[n] * n;
for(int i = n - 1; i >= 1; i --)
{
if(a[i] > a[n])
{
ans += a[n] * n;
ve.push_back({i,a[i] - a[n]});
}
if(a[i] <= a[n])
{
ans += a[i] * n;
}
}
vector<int>dle;
while(ve.size())
{
int now = ve[0].first;
int c = ve[0].second;
ans += c * now;
ve.erase(ve.begin());
for(int i = 0; i < ve.size(); i ++)
{
if(ve[i].second > c)
{
ans += c * now;
ve[i].second = ve[i].second - c;
}
else
{
ans += ve[i].second * now;
dle.push_back(i);
}
}
int t = 0;
for(int i = 0; i < dle.size(); i ++)
{
ve.erase(ve.begin() + dle[i] - t);
t += 1;
}
dle.clear();
}
cout << ans;
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 12ms
memory: 3784kb
input:
99991 3 3 3 4 3 6 4 2 2 5 3 2 3 5 3 3 2 1 2 3 4 2 3 4 3 3 3 4 3 3 3 2 3 2 3 2 4 3 3 2 3 5 3 5 4 2 4 3 3 1 3 2 2 3 4 2 3 3 2 2 4 5 3 2 3 3 1 3 3 4 1 3 4 5 1 1 3 4 2 4 3 2 5 3 3 2 2 2 4 2 4 2 2 4 2 4 3 3 2 3 2 2 1 4 3 1 3 1 2 2 3 1 1 5 2 1 2 2 3 3 1 4 4 4 3 3 3 3 1 3 3 5 5 4 4 3 3 3 4 3 6 5 3 1 1 2 2 ...
output:
4973056284288
result:
ok single line: '4973056284288'
Test #2:
score: -100
Wrong Answer
time: 7ms
memory: 3664kb
input:
69992 90001 89998 90001 90001 89997 90000 90000 90002 90003 90003 90001 89999 89999 90000 90000 90000 90000 90000 90000 90001 90000 89999 90002 90001 90000 89998 89998 90001 89998 90000 90000 89999 90000 90001 89998 90000 90004 90000 90000 90001 89999 90001 90003 89998 90001 90001 90001 90001 90002 ...
output:
-76923871168638
result:
wrong answer 1st lines differ - expected: '465680822171522', found: '-76923871168638'