Codeforces 788C 想法+bfs

9 篇文章 0 订阅

The Great Mixing
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Sasha and Kolya decided to get drunk with Coke, again. This time they have k types of Coke. i-th type is characterised by its carbon dioxide concentration . Today, on the party in honour of Sergiy of Vancouver they decided to prepare a glass of Coke with carbon dioxide concentration . The drink should also be tasty, so the glass can contain only integer number of liters of each Coke type (some types can be not presented in the glass). Also, they want to minimize the total volume of Coke in the glass.

Carbon dioxide concentration is defined as the volume of carbone dioxide in the Coke divided by the total volume of Coke. When you mix two Cokes, the volume of carbon dioxide sums up, and the total volume of Coke sums up as well.

Help them, find the minimal natural number of liters needed to create a glass with carbon dioxide concentration . Assume that the friends have unlimited amount of each Coke type.

Input

The first line contains two integers nk (0 ≤ n ≤ 10001 ≤ k ≤ 106) — carbon dioxide concentration the friends want and the number of Coke types.

The second line contains k integers a1, a2, ..., ak (0 ≤ ai ≤ 1000) — carbon dioxide concentration of each type of Coke. Some Coke types can have same concentration.

Output

Print the minimal natural number of liter needed to prepare a glass with carbon dioxide concentration , or -1 if it is impossible.

Examples
input
400 4
100 300 450 500
output
2
input
50 2
100 25
output
3
Note

In the first sample case, we can achieve concentration  using one liter of Coke of types  and .

In the second case, we can achieve concentration  using two liters of  type and one liter of  type: .



题意:给你n  k个数  问你能不能k个数任意取  假设取出m个  能不能组成n的m倍  m最小  不存在输出-1


题解:

(s1+s2+...+sm)/(m*1000)=n/1000

s1+s2+...+sm=m*n

(s1-n)+(s2-n)+...+(sm-n)=0

所以我们把ai都减去n

然后从0开始广搜  搜到0即可

#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<map>
#include<deque>
using namespace std;
int n,k;
deque<int>vis;
map<int,int>sp,sp1;
int main(){
	scanf("%d%d",&n,&k);
	int i,j,x;
	for(i=1;i<=k;i++){
		scanf("%d",&x);
		sp[x-n]=1;
	}
	vis.push_back(0);
	while(!vis.empty()){
		int f=vis.front();
		vis.pop_front();
		for(i=-1000;i<=1000;i++){
			if(sp[i]&&!sp1[f+i]){
				sp1[f+i]=sp1[f]+1;
				if(f+i==0){
					printf("%d\n",sp1[f+i]);
					return 0;
				}
				if(f+i>=-1000&&f+i<=1000)vis.push_back(f+i);
			}
		}
	}
	printf("-1\n");
	return 0;
}


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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值