其他分享
首页 > 其他分享> > P5020 货币系统

P5020 货币系统

作者:互联网

一个背包思维题
题目链接

题目思路

对于一个与[n, a]相同的货币系统 如果在a中有可以用其他值表示出来的值 我们就可以将它删去 将所有可以删掉的值删去后我们就可以得到最小的m [m, b]系统
我们可以通过背包来解决这个问题

ac代码

#include <bits/stdc++.h>

using namespace std;

const int N = 25010;

int n;
int a[N], f[N];

void solve()
{
	scanf("%d", &n);
	memset(f, 0, sizeof f);
	
	for (int i = 1; i <= n; i ++ ) scanf("%d", &a[i]);
	sort(a + 1, a + 1 + n);
	
	int ans = n;
	f[0] = 1;
	for (int i = 1; i <= n; i ++ )
	{
		if (f[a[i]])
		{
			ans -- ;
			continue;
		}
		for (int j = a[i]; j <= a[n]; j ++ ) f[j] |= f[j - a[i]];
	}
	
	printf("%d\n", ans);
}

int main()
{
	int t;
	scanf("%d", &t);
	
	while (t -- )
	{
		solve();
	}
	
	return 0;
}

标签:背包,int,scanf,系统,--,solve,货币,P5020,删去
来源: https://blog.csdn.net/Ggs5s_/article/details/120628716