查找最优解,根据可能生成对应和的解判断最优解
设置解的结构体
struct ANS
{
int num;
int high;
int type;
int res[30];
};
ANS ans,tmp;
tmp用于在DFS中修改判断生成最优解
首先将输入元素从小至大排序,如果4张面额最大的邮票都无法生成解那么直接none,conginue
然后DFS,三个参数(pos,num,sum)当前遍历的位置,(从0到数组元素个数),num当前已经利用多少邮票,大于4退出相当于剪枝
sum当前和用于判定终点,没种pos的邮票只能用0-4张
故for(int i=0;i<=4;i++) 利用i更新递归参数,tmp的成员值。再DFS时候要注意回溯复原
判断平局的时候一定要注意并不是随便两个tie解就输出tie,而是存在2个最优解
故在判断的时候如果又出现了新的最优解就要将tie变为false;
设置解的结构体
struct ANS
{
int num;
int high;
int type;
int res[30];
};
ANS ans,tmp;
tmp用于在DFS中修改判断生成最优解
首先将输入元素从小至大排序,如果4张面额最大的邮票都无法生成解那么直接none,conginue
然后DFS,三个参数(pos,num,sum)当前遍历的位置,(从0到数组元素个数),num当前已经利用多少邮票,大于4退出相当于剪枝
sum当前和用于判定终点,没种pos的邮票只能用0-4张
故for(int i=0;i<=4;i++) 利用i更新递归参数,tmp的成员值。再DFS时候要注意回溯复原
判断平局的时候一定要注意并不是随便两个tie解就输出tie,而是存在2个最优解
故在判断的时候如果又出现了新的最优解就要将tie变为false;
另外注意输出格式即可
#include <map>
#include <set>
#include <list>
#include <cmath>
#include<cctype>
#include <ctime>
#include <deque>
#include <stack>
#include <queue>
#include <cstdio>
#include <string>
#include <vector>
#include <cstdlib>
#include <cstring>
#include <iostream>
#include <algorithm>
#define LL long long
#define PI 3.1415926535897932626
using namespace std;
int gcd(int a, int b)
{
return a % b == 0 ? b : gcd(b, a % b);
}
int value[30];
struct ANS
{
int num;
int high;
int type;
int res[30];
};
ANS ans,tmp;
int cas;
bool flag;
int a;
bool tie;
void show()
{
printf("%d %d %d\n",ans.num,ans.high,ans.type);
for (int i=0;i<=ans.type;i++) printf("%d ",ans.res[i]);
putchar('\n');
printf("%d %d %d\n",tmp.num,tmp.high,tmp.type);
for (int i=0;i<=tmp.type;i++) printf("%d ",tmp.res[i]);
putchar('\n');
}
void init()
{
ans.num=99999;
ans.type=-99999;
ans.high=-99999;
memset(ans.res,0,sizeof(ans.res));
tmp.num=tmp.type=tmp.high=0;
memset(tmp.res,0,sizeof(tmp.res));
}
void judge()
{
if (value[cas-1]*4<a) {flag=true;printf("%d ---- none\n",a);return; }
}
void dfs(int pos,int num,int sum,int cur_num)
{
if (sum==a)//ans为当前最优解
{
flag=true;//有解
if(tmp.type>ans.type) {tie=false;ans=tmp;}
else if (tmp.type<ans.type) return;
else
{
if (tmp.num<ans.num) {tie=false;ans=tmp;}
else if (tmp.num>ans.num) return ;
else
{
if (tmp.high>ans.high) {tie=false;ans=tmp;}
else if (tmp.high<ans.high) return ;
else { tie=true; return ;}//这里只要遇到相同的解tie就真了,不对
}
}
return;
}
if (num>4) return ;
if (pos==cas) return ;
for (int i=0;i<=4;i++)
{
if (sum+i*value[pos]<=a && (num+i)<=4)
{
tmp.high=value[pos];
tmp.num+=i;
if (i!=0)tmp.type++;
tmp.res[pos]=i;//这个价值面额的邮票
//tmp.cur_num=i;
dfs(pos+1,num+i,sum+i*value[pos],i);
tmp.num-=i;
if (i!=0)tmp.type--;
tmp.res[pos]=0;
}
}
}
int main()
{
//freopen("sample.txt","r",stdin);
while (scanf("%d",&value[0])!=EOF)
{
cas=1;
while (scanf("%d",&a)==1 && a!=0)
value[cas++]=a;
sort(value,value+cas);//½µÐò
while (scanf("%d",&a)==1 && a!=0)
{
//½â¾öÎÊÌâ
tie=false;
flag=false;
bool first=true;
init();
judge();
// printf("%d %d \n",a,cas);
if (flag) continue;
dfs(0,0,0,0);
// show();
if (!flag) printf("%d ---- none\n",a);
else
{
printf("%d (%d): ",a,ans.type);
if (!tie)
{
for (int i=0;i<=26;i++)
{
if (ans.res[i]==0) continue;
for (int j=0;j<ans.res[i];j++)
{
if (first) {first=false;printf("%d",value[i]);}
else printf(" %d",value[i]);
}
}
}
else printf("tie");
putchar('\n');
}
}
}
return 0;
}