QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#277581#5693. 众数yq#WA 10ms6584kbC++23550b2023-12-06 20:22:522023-12-06 20:22:54

Judging History

你现在查看的是最新测评结果

  • [2023-12-06 20:22:54]
  • 评测
  • 测评结果:WA
  • 用时:10ms
  • 内存:6584kb
  • [2023-12-06 20:22:52]
  • 提交

answer

#include<iostream>
#include<vector>
#include<cmath>

using namespace std;

typedef long long ll;

vector<int>nu[100001];
bool flag[100001];

int main()
{
	int n;
	cin >> n;
	for (int i = 1; i <= n; i++)
	{
		int su;
		cin >> su;
		nu[su].push_back(i);
	}
	int su = n;
	int r = n;
	ll an = 0;
	for (int i = 1; i <= n; i++)
	{
		for (auto j : nu[i - 1])
		{
			flag[j] = 1;
			su--;
		}
		while (r >= 1 && flag[r])
		{
			r--;
		}
		if (r >= 1)
		{
			an += 1ll*su * r;
		}
	}
	cout << an << endl;
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 10ms
memory: 6584kb

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: 10ms
memory: 6428kb

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:

342882413439488

result:

wrong answer 1st lines differ - expected: '465680822171522', found: '342882413439488'