zoukankan      html  css  js  c++  java
  • 搜索+剪枝 POJ 1416 Shredding Company

    POJ 1416 Shredding Company

    Time Limit: 1000MS   Memory Limit: 10000K
    Total Submissions: 5231   Accepted: 2964

    Description

    You have just been put in charge of developing a new shredder for the Shredding Company Although a "normal" shredder would just shred sheets of paper into little pieces so that the contents would become unreadable, this new shredder needs to have the following unusual basic characteristics. 

    1.The shredder takes as input a target number and a sheet of paper with a number written on it. 

    2.It shreds (or cuts) the sheet into pieces each of which has one or more digits on it. 

    3.The sum of the numbers written on each piece is the closest possible number to the target number, without going over it. 

    For example, suppose that the target number is 50, and the sheet of paper has the number 12346. The shredder would cut the sheet into four pieces, where one piece has 1, another has 2, the third has 34, and the fourth has 6. This is because their sum 43 (= 1 + 2 + 34 + 6) is closest to the target number 50 of all possible combinations without going over 50. For example, a combination where the pieces are 1, 23, 4, and 6 is not valid, because the sum of this combination 34 (= 1 + 23 + 4 + 6) is less than the above combination's 43. The combination of 12, 34, and 6 is not valid either, because the sum 52 (= 12 + 34 + 6) is greater than the target number of 50. 
     
    Figure 1. Shredding a sheet of paper having the number 12346 when the target number is 50


    There are also three special rules : 

    1.If the target number is the same as the number on the sheet of paper, then the paper is not cut. 

    For example, if the target number is 100 and the number on the sheet of paper is also 100, then 

    the paper is not cut. 

    2.If it is not possible to make any combination whose sum is less than or equal to the target number, then error is printed on a display. For example, if the target number is 1 and the number on the sheet of paper is 123, it is not possible to make any valid combination, as the combination with the smallest possible sum is 1, 2, 3. The sum for this combination is 6, which is greater than the target number, and thus error is printed. 

    3.If there is more than one possible combination where the sum is closest to the target number without going over it, then rejected is printed on a display. For example, if the target number is 15, and the number on the sheet of paper is 111, then there are two possible combinations with the highest possible sum of 12: (a) 1 and 11 and (b) 11 and 1; thus rejected is printed. In order to develop such a shredder, you have decided to first make a simple program that would simulate the above characteristics and rules. Given two numbers, where the first is the target number and the second is the number on the sheet of paper to be shredded, you need to figure out how the shredder should "cut up" the second number. 

    Input

    The input consists of several test cases, each on one line, as follows : 

    tl num1 
    t2 num2 
    ... 
    tn numn 
    0 0 

    Each test case consists of the following two positive integers, which are separated by one space : (1) the first integer (ti above) is the target number, (2) the second integer (numi above) is the number that is on the paper to be shredded. 

    Neither integers may have a 0 as the first digit, e.g., 123 is allowed but 0123 is not. You may assume that both integers are at most 6 digits in length. A line consisting of two zeros signals the end of the input. 

    Output

    For each test case in the input, the corresponding output takes one of the following three types : 

    sum part1 part2 ... 
    rejected 
    error 

    In the first type, partj and sum have the following meaning : 

    1.Each partj is a number on one piece of shredded paper. The order of partj corresponds to the order of the original digits on the sheet of paper. 

    2.sum is the sum of the numbers after being shredded, i.e., sum = part1 + part2 +... 

    Each number should be separated by one space. 
    The message error is printed if it is not possible to make any combination, and rejected if there is 
    more than one possible combination. 
    No extra characters including spaces are allowed at the beginning of each line, nor at the end of each line. 

    Sample Input

    50 12346
    376 144139
    927438 927438
    18 3312
    9 3142
    25 1299
    111 33333
    103 862150
    6 1104
    0 0

    Sample Output

    43 1 2 34 6
    283 144 139
    927438 927438
    18 3 3 12
    error
    21 1 2 9 9
    rejected
    103 86 2 15 0
    rejected
      1 /*这个题目比较难的地方就是记录是如何划分的,我这里用了一个path,path的位数表示划分成了几份,每一位path表示的是这一划分了几个*/
      2 #include<iostream>
      3 #include<cstdlib>
      4 #include<cmath>
      5 using namespace std;
      6 #include<cstdio>
      7 #define N 10
      8 #include<cstring>
      9 int tar;
     10 int visit[1000000],rel,path=0;
     11 char paper[N];
     12 int sum(const char *s)/*计算字符串表示的数*/
     13 {
     14     int len=strlen(s+1);
     15     int ans=0;
     16     for(int i=1;i<=len;++i)
     17       ans=ans*10+s[i]-'0';
     18     return ans;
     19 }
     20 int get_ws(int n)/*取出n的位数,因为n顶多6位数*/
     21 {
     22     if(n<10) return 1;
     23     if(n<100) return 2;
     24     if(n<1000) return 3;
     25     if(n<10000) return 4;
     26     if(n<100000) return 5;
     27     return 6;
     28 }
     29 int get_pre(int n,int k)/*取出n的前k位*/
     30 {
     31     int ws=get_ws(n);
     32     return n/(int)pow(10.0,ws-k);/*这里pow中要用10.0,因为会有误差,比如pow(10,2)==99*/
     33 }
     34 void dfs(const char* s,int p,int sum1,int len)
     35 {
     36     if(sum1>tar) return;/*剪枝*/
     37     if(len==0)/*边界*//
     38     {
     39         visit[sum1]++;
     40         if(sum1>rel&&sum1<=tar)
     41         {
     42             path=p;
     43             rel=sum1;
     44         }
     45         return;
     46     }
     47     for(int i=1;i<=len;++i)
     48     {
     49         char a[10]={0},b[10]={0};
     50         int j,t;
     51         for(j=1;j<=i;++j)
     52           a[j]=s[j];
     53         a[j+1]='';
     54         for(t=1;j<=len;++j,++t)
     55           b[t]=s[j];
     56         b[++t]='';
     57         int now=sum(a);/*把a分为一份,枚举a的长度,然后递归分b*/
     58         p=p*10+i;/*记录划分方式*/
     59         dfs(b,p,sum1+now,strlen(b+1));
     60         p/=10;/*回溯*/
     61     }
     62 }
     63 int main()
     64 {
     65     while(scanf("%d%s",&tar,paper+1)==2)
     66     {
     67         int now=sum(paper);
     68         if(tar==0&&now==0) break;
     69         if(tar==now)
     70         {
     71             printf("%d %d
    ",tar,tar);
     72             continue;
     73         }
     74         int len=strlen(paper+1);
     75         int su=0;
     76         for(int i=1;i<=len;++i)
     77            su+=paper[i]-'0';
     78         if(su>tar)/*如果最小的划分方式都大于tar,那说明是达不到的*/
     79         {
     80             printf("error
    ");
     81             continue;
     82         }
     83         dfs(paper,0,0,len);
     84         if(visit[rel]>1)/*到达超过一次,最好用数组统计,不会错,而且空间够*/
     85         {
     86             printf("rejected
    ");
     87         }
     88         else{
     89             printf("%d ",rel);
     90             int i=1;
     91             while(path)/*输出划分方式*/
     92             {
     93                 int l=get_pre(path,1);
     94                 int k=l+i-1;
     95                 for(;i<=k;++i)
     96                   printf("%d",paper[i]-'0');
     97                   printf(" ");
     98                 int ws=get_ws(path);
     99                 path-=l*(int)pow(10.0,ws-1);
    100             }
    101             printf("
    ");
    102         }
    103         rel=0;path=0;tar=0;
    104         memset(paper,0,sizeof(paper));
    105         memset(visit,0,sizeof(visit));
    106     /*别忘记初始化*/
    107         }
    108     return 0;
    109 }
  • 相关阅读:
    Eclipse中构建scala开发环境的步骤
    Android中常见的坑有哪些?
    Android中有哪些好的开发框架?
    【redis专题(7)】命令语法介绍之Pub/Sub
    【redis专题(6)】命令语法介绍之hash
    【redis专题(5)】命令语法介绍之sets
    【redis专题(4)】命令语法介绍之sorted_set
    【redis专题(3)】命令语法介绍之link
    【redis专题(2)】命令语法介绍之string
    【redis专题(1)】安装与启动
  • 原文地址:https://www.cnblogs.com/c1299401227/p/5578456.html
Copyright © 2011-2022 走看看