
编程题
文章平均质量分 74
Scutware
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
ZOJ Problem Set - 2348
原题: Hire and Fire Time Limit: 2 Seconds Memory Limit: 65536 KB In this problem, you are asked to keep track of the hierarchical structure of an organization's changing staff. As the fi原创 2013-05-08 18:05:56 · 1029 阅读 · 1 评论 -
求最长非升子序列长度
求最长非升子序列长度,主要使用dfs(递归实现)以及dp两种方法。源码如下: #include using namespace std; //overrall variable int * numbers; int * dp; int nums; int max_length_dfs; int max_length_dp; //dfs-recursively implemented原创 2013-06-08 15:59:37 · 1131 阅读 · 0 评论