joj 1197: Sum It Up

来源:互联网 发布:自学编程入门先学什么 编辑:程序博客网 时间:2024/05/23 19:31

 


StatusIn/OutTIME LimitMEMORY LimitSubmit TimesSolved UsersJUDGE TYPEstdin/stdout3s8192K489203Standard

Given a specified total t and a list of n integers, find all distinct sums using numbers from the list that add up to t. For example, if t = 4, n = 6, and the list is [4, 3, 2, 2, 1, 1], then there are four different sums that equal 4: 4, 3+1, 2+2, and 2+1+1. (A number can be used within a sum as many times as it appears in the list, and a single number counts as a sum.) Your job is to solve this problem in general.

 

Input

The input file will contain one or more test cases, one per line. Each test case contains t, the total, followed by n, the number of integers in the list, followed by n integers . If n = 0 it signals the end of the input; otherwise, t will be a positive integer less than 1000, n will be an integer between 1 and 12 (inclusive), and will be positive integers less than 100. All numbers will be separated by exactly one space. The numbers in each list appear in nonincreasing order, and there may be repetitions.

 

Output

For each test case, first output a line containing `Sums of ', the total, and a colon. Then output each sum, one per line; if there are no sums, output the line `NONE'. The numbers within each sum must appear in nonincreasing order. A number may be repeated in the sum as many times as it was repeated in the original list. The sums themselves must be sorted in decreasing order based on the numbers appearing in the sum. In other words, the sums must be sorted by their first number; sums with the same first number must be sorted by their second number; sums with the same first two numbers must be sorted by their third number; and so on. Within each test case, all sums must be distinct; the same sum cannot appear twice.

 

Sample Input

4 6 4 3 2 2 1 15 3 2 1 1400 12 50 50 50 50 50 50 25 25 25 25 25 250 0

 

Sample Output

Sums of 4:43+12+22+1+1Sums of 5:NONESums of 400:50+50+50+50+50+50+25+25+25+2550+50+50+50+50+25+25+25+25+25+25

 


This problem is used for contest: 60 


Submit / Problem List / Status / Discuss

#include<stdio.h>
int sum,n,total,res;
int a[12];
int result[1000][12];
bool flag[12];
bool found;
int count,count1;
void sort(int n,int a[])
{
 int i,j,temp;
 for(i=0;i<n-1;i++)  
 for(j=0;j<n-1-i;j++)    
   if(a[j]<a[j+1])    
   {     
  temp=a[j];     
  a[j]=a[j+1];     
  a[j+1]=temp;    
   }
}
bool compare(int a[],int b[])
{
 int i;
 for(i=0;a[i]!=0&&b[i]!=0;i++)  
    if(a[i]!=b[i])   
       return false;
 return true;
}
void Backtrack(int k)
{
 int i;
 if(total==sum)
 {  
  found=true;  
  count1=0;  
  for(i=0;i<k;i++)   
  if(flag[i])    
  result[count][count1++]=a[i];  
  result[count][count1]=0;  
  count++;  
  return ;
 }
 if(k==n)
 {  
  return
  ;
 }
 if((total+a[k])<=sum)
 {    
  res-=a[k];    
  flag[k]=true;    
  total+=a[k];    
  Backtrack(k+1);    
  total-=a[k];    
  res+=a[k];
 }
 if(total+res>=sum)
  {  
   flag[k]=false;  
   Backtrack(k+1); 
  }
}
int main()
{
 freopen("in.txt","r",stdin);
 freopen("out.txt","w",stdout);
 while(scanf("%d%d",&sum,&n)!=EOF)
 {  
  if(n==0)   
  break;     
  int i,j,k;  
  total=0;  
  res=0;  
  count=0;  
  found=false;  
  for(i=0;i<n;i++)  
  {   
   flag[i]=false;   
   scanf("%d",&a[i]);   
   res+=a[i];  
  }  
  sort(n,a);  
  Backtrack(0);  
  printf("Sums of %d:/n",sum);  
  if(!found)  
   printf("NONE/n");  
  else  
  {     
   for(i=0;i<count;i++)     
   {    
    for(j=0;j<=i;j++)    
    {    
     if(compare(result[j],result[i]))     
     break;     
    }    
       if(j>=i)    
       {     
      printf("%d",result[i][0]);    
         for(k=1;result[i][k]!=0;k++)     
      printf("+%d",result[i][k]);     
      printf("/n");    
       }     
   }  
  }
 }
 return 0;
}

原创粉丝点击