22.4.16

1,Array Cloning Technique;2,19届省赛总结


1,Array Cloning Technique

用unordered_map<>被卡哈希了,用map能过;

map的操作时间复杂度稳定为logn,而unordered_map在遇到哈希冲突时可能会被卡成O(n),从而导致tle;

#include<bits/stdc++.h>
#define rep1(i,a,n) for(register int i=a;i<n;i++) 
#define rep2(i,a,n) for(register int i=a;i<=n;i++) 
#define per1(i,n,a) for(register int i=n;i>a;i--) 
#define per2(i,n,a) for(register int i=n;i>=a;i--)
#define quick_cin() cin.tie(0),cout.tie(0),ios::sync_with_stdio(false)
#define INF 0x3f3f3f3f
#define pb push_back
#define endl "\n"
#define xiaoshu(a) setprecision(a)
using namespace std;
typedef long long ll;
typedef pair<int,int> PII;
typedef double db;
void solve()
{
	ll n;
	cin>>n;
	map<ll,ll>hs;
	ll maxx=0;
	rep2(i,1,n)
	{
		ll x;
		cin>>x;
		hs[x]++;
		if(hs[x]>maxx)maxx=hs[x];
	}
	ll ans=n-maxx;
	if(maxx==n)cout<<0<<endl;
	else
	{
		while(1)
		{
			maxx*=2;
			ans++;
			if(n<=maxx)break;
		}
		cout<<ans<<endl;
	}
}
signed main()
{
	quick_cin();
	int T;
	cin>>T;
	while(T--)solve();
	return 0;
}

2,其实感觉还可以,过了5道,挺满意的了但是第六个题我花了两个半小时,最后半小时队友也来帮我,但是还是wa,wa有6发把。。。,队友也看不出来哪里错了,感觉都挺对的,但是最后还是没能ac掉这个easy glid!!大一,弱校,这个成绩勉强接受,来年再战!!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Dull丶

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值