Codeforces1003D.Coins and Queries(贪心1600)爆num数组 map

在这里插入图片描述

#include<iostream>
#include<cstdio>
#include<algorithm>
#include<string>
#include<cstring>
#include<vector>
#include<set>
#include<map>
#include<stack>
#include<queue>
#include<cmath>
#include<cctype>
using namespace std;

#define PI acos(-1.0)
#define mp make_pair
typedef long long ll;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;

const int INF32M=0x3f3f3f3f;
const ll INF64M=0x3f3f3f3f3f3f3f3f;
const int maxn=2e5+5;
map<int,int> m;		//值1-2e9 出现次数n=2e5
//值1-2e9 出现次数num  爆数组1e6 
int main()
{
	ios::sync_with_stdio(false);
	int n,q,t,cnt=0,minn=INF32M;//最小次数minn 
	cin>>n>>q;
	for(int i=1;i<=n;i++)
	{
		cin>>t;	//值出现的个数够不够
		m[t]++;
		
	}
	while(q--)
	{
		cnt=0;	//每个数需要硬币个数清0 
		cin>>t;
		for(int i=1<<30;i>=1;i=i/2)	// 2e9 1后30个0 最大二次幂 从大到小保证了min硬币个数 
		{
			minn=min(m[i],t/i);//提供多少 需要多少
			t-=minn*i;
			cnt+=minn; 
		}
		if(t)
			cout<<-1<<endl;
		else
			cout<<cnt<<endl;
	}
	return 0; 
}

num数组存值1-2e9出现次数,会爆数组1e6
map每个值出现次数
minn=min(m[i],t/i); 提供多少 需要多少
t=5 样例两个4
i=4 提供2 需要5/4=1个 需要多少拿多少 5-4=1
t=1 i=1 提供0 需要1个 minn=0 t=t-minni=1-01=1
t拿不完 输出-1

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值