B. Planning The Expedition(思维)

Natasha is planning an expedition to Mars for n

people. One of the important tasks is to provide food for each participant.

The warehouse has m

daily food packages. Each package has some food type ai

.

Each participant must eat exactly one food package each day. Due to extreme loads, each participant must eat the same food type throughout the expedition. Different participants may eat different (or the same) types of food.

Formally, for each participant j

Natasha should select his food type bj and each day j-th participant will eat one food package of type bj. The values bj

for different participants may be different.

What is the maximum possible number of days the expedition can last, following the requirements above?

Input

The first line contains two integers n

and m (1≤n≤100, 1≤m≤100

) — the number of the expedition participants and the number of the daily food packages available.

The second line contains sequence of integers a1,a2,…,am

(1≤ai≤100), where ai is the type of i

-th food package.

Output

Print the single integer — the number of days the expedition can last. If it is not possible to plan the expedition for even one day, print 0.

Examples

Input

Copy

4 10
1 5 2 1 1 1 2 5 7 2

Output

Copy

2

Input

Copy

100 1
1

Output

Copy

0

Input

Copy

2 5
5 4 3 2 1

Output

Copy

1

Input

Copy

3 9
42 42 42 42 42 42 42 42 42

Output

Copy

3

Note

In the first example, Natasha can assign type 1

food to the first participant, the same type 1 to the second, type 5 to the third and type 2 to the fourth. In this case, the expedition can last for 2 days, since each participant can get two food packages of his food type (there will be used 4 packages of type 1, two packages of type 2 and two packages of type 5

).

In the second example, there are 100

participants and only 1 food package. In this case, the expedition can't last even 1 day.

题意:

一共有n名宇航员上火星,一共携带了m个包裹的食物,每个宇航员在火星的每天必须吃统一类型的食物,不同宇航员可以吃相同类型的食物,也可以吃不同类型的食物,求宇航员们最多可以在火星待多长时间

思路:

记录每种类型食物的数量,枚举宇航员在火星的天数x(最多m天),判断这些食物在满足条件的情况下是否可以供n名宇航员吃

取天数的最大值

代码:

#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
const int N = 105;
int vis[N];  //每种食物的数量 
int main(){
	int n,m;
	scanf("%d%d",&n,&m);
	for(int i=0;i<m;i++){
		int x;
		scanf("%d",&x);
		vis[x]++;
	}
	int ans=0;
    for(int i=1;i<=m;i++){ //假设可以吃i天 
    	int cnt=0; //如果吃i天,可以供多少人吃 
        for(int j=1;j<=100;j++)
          cnt+=vis[j]/i;
        if(cnt>=n) ans=max(ans,i);
	}
	printf("%d\n",ans);
	return 0;
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值