Codeforces Round #576 (Div. 2) C MP3

it2022-05-07  3

C. MP3

time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard output

problem

One common way of digitalizing sound is to record sound intensity at particular time moments. For each time moment intensity is recorded as a non-negative integer. Thus we can represent a sound file as an array of n non-negative integers.

If there are exactly K distinct values in the array, then we need k= ⌈ log 2 K ⌉ bits to store each value. It then takes nk bits to store the whole file.

To reduce the memory consumption we need to apply some compression. One common way is to reduce the number of possible intensity values. We choose two integers l≤r, and after that all intensity values are changed in the following way: if the intensity value is within the range [ l ; r ], we don’t change it. If it is less than l, we change it to l; if it is greater than r, we change it to r. You can see that we lose some low and some high intensities.

Your task is to apply this compression in such a way that the file fits onto a disk of size I bytes, and the number of changed elements in the array is minimal possible.

We remind you that 1 byte contains 8 bits.

k=⌈log2K⌉ is the smallest integer such that K≤2k. In particular, if K=1, then k=0.

Input

The first line contains two integers n and I (1≤n≤4⋅105, 1≤I≤108) — the length of the array and the size of the disk in bytes, respectively.

The next line contains n integers ai (0≤ai≤109) — the array denoting the sound file.

Output

Print a single integer — the minimal possible number of changed elements.

Examples

input 1

6 1 2 1 2 3 4 3

output 1

2

input 2

6 2 2 1 2 3 4 3

output 2

0

input 3

6 1 1 1 2 2 3 3

output 3

2

Note

In the first example we can choose l=2,r=3. The array becomes 2 2 2 3 3 3, the number of distinct elements is K=2, and the sound file fits onto the disk. Only two values are changed.

In the second example the disk is larger, so the initial file fits it and no changes are required.

In the third example we have to change both 1s or both 3s.

题意

给定一组数,这组数里面有 k 种不同的数,则每一个数所需要的空间是 log 2 k bits,而我们总共的存储空间为 I ( 大写字母 i ,不是数字 一 ) bytes ( 1byte = 8 bits ),为了使得所有的数都能存储下,找出两个数 a,b,将比 a 小的数字均变成 a ,比 b 大的数均变成b, 找出改变的数字个数最小的一种方法,输出改变的数字的个数

分析

先开始给原数组排序,然后对每一个数进行遍历,找出改变的数最小的方法

代码

#include <bits/stdc++.h> using namespace std; const int N=4e5+5; int n,I,k,a[N],b[N],B,t[N],ans; int main(){ scanf("%d%d",&n,&I); I<<=3;k=I/n; for (int i=1;i<=n;i++) scanf("%d",&a[i]),b[i]=a[i]; sort(b+1,b+n+1); B=unique(b+1,b+n+1)-(b+1); if (k>30 || (1<<k)>=B) return puts("0"),0; for (int i=1;i<=n;i++) a[i]=lower_bound(b+1,b+B+1,a[i])-b, t[a[i]]++;k=1<<k;ans=n; for (int i=1;i<=B;i++) t[i]+=t[i-1]; for (int i=k;i<=B;i++) ans=min(ans,n-t[i]+t[i-k]); return printf("%d\n",ans),0; }

最新回复(0)