热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

搜索+剪枝POJ1416ShreddingCompany

POJ1416ShreddingCompanyTimeLimit: 1000MSMemoryLimit: 10000KTotalSubmissions: 5231Accepted:

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
  3 #include
  4 #include
  5 using namespace std;
  6 #include
  7 #define N 10
  8 #include
  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]=\0;
 54         for(t=1;j<=len;++j,++t)
 55           b[t]=s[j];
 56         b[++t]=\0;
 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\n",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\n");
 81             continue;
 82         }
 83         dfs(paper,0,0,len);
 84         if(visit[rel]>1)/*到达超过一次,最好用数组统计,不会错,而且空间够*/
 85         {
 86             printf("rejected\n");
 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("\n");
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 }

搜索+剪枝 POJ 1416 Shredding Company


推荐阅读
  • POJ1942   DPaths on a Grid
    Imagineyouareattendingyourmathlessonatschool.Onceagain,youareboredbecauseyourteachertellst ... [详细]
  • SQLPLUS 命令
    定制:sql提示符信息1、显示SQLPLUS帮助,命令如下:HELPINDEX@COPYPAUSESHUTDOWN@@DEFINEPRINTSPOOLDELPR ... [详细]
  • 关于linux下,ls vi等命令失效的解决方法(配置下环境变量出现问题)
    配置完环境变量source之后,linux的lsvi命令均失效,报错如下:解决方法1.输入 exportPATHusrbin:usrsbin:bin:sbin:usrX11R6bi ... [详细]
  • GetWindowLong函数
    今天在看一个代码里头写了GetWindowLong(hwnd,0),我当时就有点费解,靠,上网搜索函数原型说明,死活找不到第 ... [详细]
  • 本文讨论了如何优化解决hdu 1003 java题目的动态规划方法,通过分析加法规则和最大和的性质,提出了一种优化的思路。具体方法是,当从1加到n为负时,即sum(1,n)sum(n,s),可以继续加法计算。同时,还考虑了两种特殊情况:都是负数的情况和有0的情况。最后,通过使用Scanner类来获取输入数据。 ... [详细]
  • 本文介绍了九度OnlineJudge中的1002题目“Grading”的解决方法。该题目要求设计一个公平的评分过程,将每个考题分配给3个独立的专家,如果他们的评分不一致,则需要请一位裁判做出最终决定。文章详细描述了评分规则,并给出了解决该问题的程序。 ... [详细]
  • 本文主要解析了Open judge C16H问题中涉及到的Magical Balls的快速幂和逆元算法,并给出了问题的解析和解决方法。详细介绍了问题的背景和规则,并给出了相应的算法解析和实现步骤。通过本文的解析,读者可以更好地理解和解决Open judge C16H问题中的Magical Balls部分。 ... [详细]
  • 知识图谱——机器大脑中的知识库
    本文介绍了知识图谱在机器大脑中的应用,以及搜索引擎在知识图谱方面的发展。以谷歌知识图谱为例,说明了知识图谱的智能化特点。通过搜索引擎用户可以获取更加智能化的答案,如搜索关键词"Marie Curie",会得到居里夫人的详细信息以及与之相关的历史人物。知识图谱的出现引起了搜索引擎行业的变革,不仅美国的微软必应,中国的百度、搜狗等搜索引擎公司也纷纷推出了自己的知识图谱。 ... [详细]
  • 推荐系统遇上深度学习(十七)详解推荐系统中的常用评测指标
    原创:石晓文小小挖掘机2018-06-18笔者是一个痴迷于挖掘数据中的价值的学习人,希望在平日的工作学习中,挖掘数据的价值, ... [详细]
  • win10下载速度慢
    运维|windows运维win10,下载,速度慢运维-windows运维秒赞源码详细说明,vscode怎么跑项目,台电安装ubuntu,tomcat记录请求报文,sqlite的数据 ... [详细]
  • WarensoftUnity3dCommunicationLibthisisahighperformancecommunicationlibraryfor Unity3d,incl ... [详细]
  • 1、emlog简单的http:www.emlog.nettemplate2992、x6cms【推荐】专门做企业cms而且限制没有太多3、druperjoomal国外的,强大 ... [详细]
  • 微软头条实习生分享深度学习自学指南
    本文介绍了一位微软头条实习生自学深度学习的经验分享,包括学习资源推荐、重要基础知识的学习要点等。作者强调了学好Python和数学基础的重要性,并提供了一些建议。 ... [详细]
  • 本文介绍了设计师伊振华受邀参与沈阳市智慧城市运行管理中心项目的整体设计,并以数字赋能和创新驱动高质量发展的理念,建设了集成、智慧、高效的一体化城市综合管理平台,促进了城市的数字化转型。该中心被称为当代城市的智能心脏,为沈阳市的智慧城市建设做出了重要贡献。 ... [详细]
  • 目录实现效果:实现环境实现方法一:基本思路主要代码JavaScript代码总结方法二主要代码总结方法三基本思路主要代码JavaScriptHTML总结实 ... [详细]
author-avatar
鍾情噯伱_616
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有