QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#238126 | #5693. 众数 | tyang | WA | 12ms | 4220kb | C++14 | 599b | 2023-11-04 15:50:41 | 2023-11-04 15:50:42 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
const int N = 2e5 + 10;
int a[N];
long long f[N];
int main(void)
{
int n; cin >> n;
for(int i = 1 ; i <= n ; ++ i )cin >> a[i];
vector<int>vc;
vc.push_back(n);
for(int i = n - 1 ; i >= 1 ; -- i )if(a[i] > a[vc.back()])vc.push_back(i);
int k = 0;
for(int i = 1 ; i <= n ; ++ i ){
if(k < vc.size() && i > a[vc[k]]){ ++ k; }
if(k < vc.size())f[i] = f[i - 1] + vc[k];
}
long long res = 0;
for(int i = 1 ; i <= n ; ++ i )res = res + f[a[i]];
cout << res << endl;
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 12ms
memory: 3848kb
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: 8ms
memory: 4220kb
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:
0
result:
wrong answer 1st lines differ - expected: '465680822171522', found: '0'