我有一个输入:
- 测试用例的数量
- 一笔钱
作为输出我需要:
- 我们拥有的不同硬币的数量和每枚硬币的价值。
程序应该确定是否有解决方案,因此输出应该是“是”或“否”。
我使用动态编程编写程序,但它仅在我一次输入一个测试用例时才有效如果我一次编写 200 个测试用例,输出并不总是正确的。
我假设我在测试用例之间存在错误保存状态的问题。我的问题是,我该如何解决这个问题?我只是寻求一些建议。
这是我的代码:
#include<iostream>
#include<stdio.h>
#include<string>
#define max_muenzwert 1000
using namespace std;
int coin[10];//max. 10 coins
int d[max_muenzwert][10];//max value of a coin und max. number of coins
int tabelle(int s,int k)//computes table
{
if(d[s][k]!=-1) return d[s][k];
d[s][k]=0;
for(int i=k;i<=9&&s>=coin[i];i++)
d[s][k]+=tabelle(s-coin[i],i);
return d[s][k];
}
int main()
{
int t;
for(cin>>t;t>0;t--)//number of testcases
{
int n; //value we are searching
scanf("%d",&n)==1;
int n1;
cin>>n1;//how many coins
for (int n2=0; n2<n1; n2++)
{
cin>>coin[n2];//value of coins
}
memset(d,-1,sizeof(d));//set table to -1
for(int i=0;i<=9;i++)
{
d[0][i]=1;//set only first row to 1
}
if(tabelle(n,0)>0) //if there's a solution
{
cout<<"yes"<<endl;
}
else //no solution
{
cout<<"no"<<endl;
}
}
//system("pause");
return 0;
}