Codeforces Div2 576 C_思維

題目鏈接:https://codeforces.com/contest/1199/problem/C

解題思路:
離散化這個數組中的數值,並且開闢一個數組去存儲每個元素出現的次數;接着去計算區間的長度k,然後可以使用雙指針或者前綴和直接求滑動區間次數和的最大數值,然後用n - 這個maxx, 就是最終的答案;
坑點:
有可能k非常的到,導致在進行計算K的時候爆LL,這個點直接讓我在比賽的時候沒做出來。以後一定要注意這種細節的地方。

代碼一份:

#include <iostream>
#include <cstdio>
#include <algorithm>

using namespace std;

typedef long long LL;

const int maxn = 4e5 + 5;

int n, m, cnt;
int a[maxn], b[maxn];

inline LL qw(int x, int y) {
	LL xx = x;
	LL res = 1;
	while(y) {
		if(y & 0x01) {
			res *= xx;
			if(res >= cnt) return res;
		}
		xx *= xx;
		y >>= 1;
	}

	return res;
}

int main(void) {
//	freopen("in.txt", "r", stdin);
	scanf("%d%d", &n, &m);
	for(int i = 1; i <= n; i ++) scanf("%d", &a[i]);
	sort(a + 1, a + 1 + n);

	int tmp = -1;
	for(int i = 1; i <= n; i ++) {
		if(a[i] != tmp) {
			b[++ cnt] ++;
			tmp = a[i];
		} else {
			b[cnt] ++;
		}
	}	

	m = m * 8; LL k = m / n;
	
	if(k >= 30) {
		puts("0");
		return 0;
	}
	
	k = qw(2, k);
	if(k >= cnt) puts("0");
	else {
		for(int i = 2; i <= cnt; i ++)
			b[i] += b[i - 1];

		int maxx = -1;
		for(int i = k; i <= cnt; i ++)
			maxx = max(maxx, b[i] - b[i - k]);

		printf("%d\n", n - maxx);
	}

	return 0;
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章