首页 > 代码库 > 小P的故事——神奇的换零钱&&人活着系列之平方数
小P的故事——神奇的换零钱&&人活着系列之平方数
http://acm.sdut.edu.cn/sdutoj/showproblem.php?pid=2777&cid=1219
这题不会,看了别人的代码
#include <iostream>#include <string.h>#include <stdlib.h>#include <stdio.h>using namespace std;int dp[32770];int main(){ int n,i,j; int w[4]= {0,1,2,3}; memset(dp,0,sizeof(dp)); dp[0]=1; for(i=1; i<=3; i++) { for(j=w[i]; j<=32768; j++) { dp[j]=dp[j]+dp[j-w[i]]; } } while(scanf("%d",&n)!=EOF) { printf("%d\n",dp[n]); } return 0;}
http://acm.sdut.edu.cn/sdutoj/problem.php?action=showproblem&problemid=2934
这题就是换零钱的变形
#include <iostream>#include <string.h>#include <stdlib.h>#include <stdio.h>using namespace std;int main(){ int T,n,dp[501]; int w[21]= {0,1,4,9,16,25,36,49,64,81,100,121,144,169,196,225,256,289,324,361,400}; memset(dp,0,sizeof(dp)); dp[0]=1; for(int i=1; i<=20; i++) { for(int j=w[i]; j<=500; j++) { dp[j]=dp[j]+dp[j-w[i]]; } } while(scanf("%d",&n)!=EOF) { printf("%d\n",dp[n]); } return 0;}
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。