博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 1028: Ignatius and the Princess III
阅读量:5091 次
发布时间:2019-06-13

本文共 597 字,大约阅读时间需要 1 分钟。

///@author Sycamore, ZJNU///@date 7/28/2017#include
using namespace std;const int MAXN=125;int main(){ int n; while(cin>>n) { vector
p(n+1),q(n+1); for(int i=0;i<=n;i++) { p[i]=1; q[i]=0; } for(int i=2;i<=n;i++)//q { for(int j=0;j<=n;j++) for(int k=0;k+j<=n;k+=i) q[j+k]+=p[j]; p=move(q); q.resize(n+1); } cout<
<<'\n'; } return 0;}

 

转载于:https://www.cnblogs.com/zjnu/p/7252340.html

你可能感兴趣的文章
Scrapy实战篇(三)之爬取豆瓣电影短评
查看>>
HDU 5510 Bazinga KMP
查看>>
[13年迁移]Firefox下margin-top问题
查看>>
Zookeeper常用命令 (转)
查看>>
Enterprise Library - Data Access Application Block 6.0.1304
查看>>
重构代码 —— 函数即变量(Replace temp with Query)
查看>>
Bootstrap栅格学习
查看>>
程序员的数学
查看>>
聚合与组合
查看>>
如何理解汉诺塔
查看>>
洛谷 P2089 烤鸡【DFS递归/10重枚举】
查看>>
Linux基本操作
查看>>
osg ifc ifccolumn
查看>>
C++ STL partial_sort
查看>>
centos redis 安装过程,解决办法
查看>>
IOS小技巧整理
查看>>
WebDriverExtensionsByC#
查看>>
我眼中的技术地图
查看>>
lc 145. Binary Tree Postorder Traversal
查看>>
sublime 配置java运行环境
查看>>