【YBTOJ】货币系统

【YBTOJ】货币系统

思路:

用一个类似筛的东西,把不可以表示的筛出来,那就是B的货币系统

c o d e code code

#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>

using namespace std;

int t, n, a[100010], f[1000100];

int main()
{
	scanf("%d", &t);
	while(t--)
	{
		int maxx=0;
		scanf("%d", &n);
		for(int i=1; i<=n; i++)
		{
			scanf("%d", &a[i]);
			maxx=max(maxx, a[i]);
		}
		int ans=0;
		sort(a+1, a+1+n);
		for(int i=1; i<=n; i++)
		{
			if(f[a[i]]!=1)
				ans++, f[a[i]]=1;
			for(int j=1; j<=maxx; j++)
			{
				if(f[j])
					if(j+a[i]<=maxx)
						f[j+a[i]]=1;
			}
		}
		printf("%d\n", ans);
		memset(f, 0, sizeof(f));
	}
	return 0;
}
上一篇:CodeForces 1467B - Hills And Valleys


下一篇:题解 P3431 洛谷【[POI2005]AUT-The Bus】