F. Alex的午饭(巧妙计数,找出出现次数超过一半的那个数字)

在这里插入图片描述
中文题目题意就不多说了,这里面要注意,数的范围太大,不能用数组来计数,下面是一种比较巧妙的方式,刚开始我确实没想到,以前写过类似的忘了这种方法,详情看代码:

#include<set>
#include<map>
#include<stack>
#include<cmath>
#include<queue>
#include<vector>
#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
typedef long long ll;
const int maxn = 20000010;
const int seed = 131;
const ll MOD = 1e9 + 7;
const int INF = 0x3f3f3f3f;
using namespace std;

int main() {
	int n;
	while (scanf("%d", &n) != EOF)
	{
		ll num;
		scanf("%lld", &num);
		int sum = 1;
		ll y = num;
		for (int i = 2; i <= n; i++)
		{
			scanf("%lld", &num);
			if (sum == 0)
			{
				y = num;
				sum = 1;
			}
			else if (num == y)
				sum++;
			else
				sum--;
		}
		printf("%lld\n", y);
	}
	return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值