POJ 1010 STAMPS 解题报告

2024-03-29 08:32
文章标签 报告 poj 解题 1010 stamps

本文主要是介绍POJ 1010 STAMPS 解题报告,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

这道题大神解释得很清楚,包括我根本没有意识到的优化(同面额的邮票种类大于5的情况解是一样的)。我一开始也是按照递归深搜做的,效果比较差,应该是剪枝的地方没有考虑情况。这道题剪枝同时考虑效率和正确性还是比较难的。后来按照最直观的四重循环做的。因为邮票组合最多四种。

具体分析可以移步大神的解题报告:http://blog.csdn.net/cugbliang/article/details/2742242

代码写得比较繁琐,重复代码比较多。另外,对STL中的vector实现还是不清楚,具体来说就是clear()和resize()在windows下用visual studio 2010 sp1 ultimate环境下运行有时会抛异常,我到后来还是没弄清楚为什么。不过程序在linux下用gcc编译运行是没有问题的。

1010Accepted192K32MS

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;const int N = 100;
int n = 0;
int stamps[N];struct Allocation{int nstamps;int ntypes;int highestvalue;bool tie;vector<int> stamps;Allocation(){nstamps = 0;ntypes = 0;highestvalue = 0;tie = false;stamps.resize(4);}
};vector<Allocation> sols;void updateSolution(const int req, Allocation &allocation, int *type, int cnt)
{if(sols[req].ntypes < allocation.ntypes || sols[req].ntypes == allocation.ntypes && sols[req].nstamps > allocation.nstamps ||sols[req].ntypes == allocation.ntypes && sols[req].nstamps == allocation.nstamps && sols[req].highestvalue < allocation.highestvalue){sols[req] = allocation;sols[req].tie = false;}else if(sols[req].ntypes == allocation.ntypes && sols[req].nstamps == allocation.nstamps&& sols[req].highestvalue == allocation.highestvalue){sols[req].tie = true;}
}void updateAllocation(int &req, Allocation &allocation, int *type, int cnt)
{allocation.nstamps = cnt;allocation.stamps[cnt - 1] = stamps[type[cnt - 1]];if(type[cnt - 1] != type[cnt - 2]){allocation.ntypes++;}allocation.highestvalue = stamps[type[cnt - 1]];
}int main()
{int stamp;while(fscanf(stdin, "%d", &stamp) > 0){memset(stamps, 0, n * sizeof(int));n = 0;int pre = 0;int cnt = 0;while(stamp != 0){if(stamp == pre){cnt++;}else{cnt = 0;}if(cnt < 5){stamps[n] = stamp;n++;}fscanf(stdin, "%d", &stamp);}//sort(stamps, stamps + n);vector<int> reqs;int reqest, maxreq = 0;fscanf(stdin, "%d", &reqest);while(reqest != 0){reqs.push_back(reqest);if(reqest > maxreq){maxreq = reqest;}fscanf(stdin, "%d", &reqest);}int upperbnd = min(stamps[n - 1] * 4, maxreq);if(!sols.empty()){sols.clear();}sols.resize(upperbnd + 1);int type[4], req[4];Allocation allocation[4];for(type[0] = 0; type[0] < n; ++type[0]){req[0] = stamps[type[0]];if(req[0] > upperbnd){break;}allocation[0] = Allocation();allocation[0].nstamps = 1;allocation[0].stamps[0] = stamps[type[0]];allocation[0].ntypes = 1;allocation[0].highestvalue = stamps[type[0]];updateSolution(req[0], allocation[0], type, 1);for(type[1] = type[0]; type[1] < n; ++type[1]){req[1] = req[0];req[1] += stamps[type[1]];if(req[1] > upperbnd){break;}allocation[1] = allocation[0];updateAllocation(req[1], allocation[1], type, 2);updateSolution(req[1], allocation[1], type, 2);	for(type[2] = type[1]; type[2] < n; ++type[2]){req[2] = req[1];req[2] += stamps[type[2]];if(req[2] > upperbnd){break;}allocation[2] = allocation[1];updateAllocation(req[2], allocation[2], type, 3);updateSolution(req[2], allocation[2], type, 3);for(type[3] = type[2]; type[3] < n; ++type[3]){req[3] = req[2];req[3] += stamps[type[3]];if(req[3] > upperbnd){break;}	allocation[3] = allocation[2];updateAllocation(req[3], allocation[3], type, 4);updateSolution(req[3], allocation[3], type, 4);}}}}for(int i = 0; i < reqs.size(); ++i){int req = reqs[i];fprintf(stdout, "%d ", req);if(req > upperbnd || sols[req].ntypes == 0){fprintf(stdout, "---- none\n");}else{fprintf(stdout, "(%d):", sols[req].ntypes);if(sols[req].tie){fprintf(stdout, " tie\n");}else{for(int j = 0; j < sols[req].nstamps; ++j){fprintf(stdout, " %d", sols[req].stamps[j]);}fprintf(stdout, "\n");}}}}return 0;
}


这篇关于POJ 1010 STAMPS 解题报告的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/858117

相关文章

【专题】2024飞行汽车技术全景报告合集PDF分享(附原数据表)

原文链接: https://tecdat.cn/?p=37628 6月16日,小鹏汇天旅航者X2在北京大兴国际机场临空经济区完成首飞,这也是小鹏汇天的产品在京津冀地区进行的首次飞行。小鹏汇天方面还表示,公司准备量产,并计划今年四季度开启预售小鹏汇天分体式飞行汽车,探索分体式飞行汽车城际通勤。阅读原文,获取专题报告合集全文,解锁文末271份飞行汽车相关行业研究报告。 据悉,业内人士对飞行汽车行业

poj 3974 and hdu 3068 最长回文串的O(n)解法(Manacher算法)

求一段字符串中的最长回文串。 因为数据量比较大,用原来的O(n^2)会爆。 小白上的O(n^2)解法代码:TLE啦~ #include<stdio.h>#include<string.h>const int Maxn = 1000000;char s[Maxn];int main(){char e[] = {"END"};while(scanf("%s", s) != EO

hdu 2602 and poj 3624(01背包)

01背包的模板题。 hdu2602代码: #include<stdio.h>#include<string.h>const int MaxN = 1001;int max(int a, int b){return a > b ? a : b;}int w[MaxN];int v[MaxN];int dp[MaxN];int main(){int T;int N, V;s

poj 1511 Invitation Cards(spfa最短路)

题意是给你点与点之间的距离,求来回到点1的最短路中的边权和。 因为边很大,不能用原来的dijkstra什么的,所以用spfa来做。并且注意要用long long int 来存储。 稍微改了一下学长的模板。 stack stl 实现代码: #include<stdio.h>#include<stack>using namespace std;const int M

poj 3259 uva 558 Wormholes(bellman最短路负权回路判断)

poj 3259: 题意:John的农场里n块地,m条路连接两块地,w个虫洞,虫洞是一条单向路,不但会把你传送到目的地,而且时间会倒退Ts。 任务是求你会不会在从某块地出发后又回来,看到了离开之前的自己。 判断树中是否存在负权回路就ok了。 bellman代码: #include<stdio.h>const int MaxN = 501;//农场数const int

poj 1258 Agri-Net(最小生成树模板代码)

感觉用这题来当模板更适合。 题意就是给你邻接矩阵求最小生成树啦。~ prim代码:效率很高。172k...0ms。 #include<stdio.h>#include<algorithm>using namespace std;const int MaxN = 101;const int INF = 0x3f3f3f3f;int g[MaxN][MaxN];int n

poj 1287 Networking(prim or kruscal最小生成树)

题意给你点与点间距离,求最小生成树。 注意点是,两点之间可能有不同的路,输入的时候选择最小的,和之前有道最短路WA的题目类似。 prim代码: #include<stdio.h>const int MaxN = 51;const int INF = 0x3f3f3f3f;int g[MaxN][MaxN];int P;int prim(){bool vis[MaxN];

poj 2349 Arctic Network uva 10369(prim or kruscal最小生成树)

题目很麻烦,因为不熟悉最小生成树的算法调试了好久。 感觉网上的题目解释都没说得很清楚,不适合新手。自己写一个。 题意:给你点的坐标,然后两点间可以有两种方式来通信:第一种是卫星通信,第二种是无线电通信。 卫星通信:任何两个有卫星频道的点间都可以直接建立连接,与点间的距离无关; 无线电通信:两个点之间的距离不能超过D,无线电收发器的功率越大,D越大,越昂贵。 计算无线电收发器D

poj 1502 MPI Maelstrom(单源最短路dijkstra)

题目真是长得头疼,好多生词,给跪。 没啥好说的,英语大水逼。 借助字典尝试翻译了一下,水逼直译求不喷 Description: BIT他们的超级计算机最近交货了。(定语秀了一堆词汇那就省略吧再见) Valentine McKee的研究顾问Jack Swigert,要她来测试一下这个系统。 Valentine告诉Swigert:“因为阿波罗是一个分布式共享内存的机器,所以它的内存访问

uva 10061 How many zero's and how many digits ?(不同进制阶乘末尾几个0)+poj 1401

题意是求在base进制下的 n!的结果有几位数,末尾有几个0。 想起刚开始的时候做的一道10进制下的n阶乘末尾有几个零,以及之前有做过的一道n阶乘的位数。 当时都是在10进制下的。 10进制下的做法是: 1. n阶位数:直接 lg(n!)就是得数的位数。 2. n阶末尾0的个数:由于2 * 5 将会在得数中以0的形式存在,所以计算2或者计算5,由于因子中出现5必然出现2,所以直接一