[BZOJ-2456]mode

Description

给你一个n个数的数列,其中某个数出现了超过n / 2次即众数,请你找出那个数。
注意:空间限制1MB。

Solution

如果没有空间限制,我们排个序就可以了。
因为题目保证了众数的个数大于n / 2,所以我们把每个数和一个与它不同的数相抵消,最后剩下的就是答案。

Notice

注意空间限制。

Code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#include<cstdio>
using namespace std;
#define sqz main
#define ll long long
#define rep(i, a, b) for (int i = (a); i <= (b); i++)
#define per(i, a, b) for (int i = (a); i >= (b); i--)
#define Rep(i, a, b) for (int i = (a); i < (b); i++)
#define travel(i, u) for (int i = head[u]; ~i; i = edge[i].next)

const ll INF = 1e9, Mo = 998244353;
const int N = 50000;
const double eps = 1e-6;
namespace slow_IO
{
ll read()
{
ll x = 0; int zf = 1; char ch = getchar();
while (ch != '-' && (ch < '0' || ch > '9')) ch = getchar();
if (ch == '-') zf = -1, ch = getchar();
while (ch >= '0' && ch <= '9') x = x * 10 + ch - '0', ch = getchar();
return x * zf;
}
void write(ll y)
{
if (y < 0) putchar('-'), y = -y;
if (y > 9) write(y / 10);
putchar(y % 10 + '0');
}
}
using namespace slow_IO;

int sqz()
{
int n = read(), ans = 0, cnt = 0, x;
rep(i, 1, n)
{
x = read();
if (x == ans) cnt++;
else if (cnt) cnt--;
else ans = x, cnt = 1;
}
printf("%d\n", ans);
return 0;
}
文章目录
  1. 1. Description
  2. 2. Solution
  3. 3. Notice
  4. 4. Code