PAT顶级
丁一丁一
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
The Best Peak Shape
#include<iostream> #include<vector> #include<cmath> using namespace std; int main(){ int n; scanf("%d",&n); vector<int> forward(n+1,0),backward(n+1,0),input(n+1,0); f...原创 2018-09-05 15:23:59 · 911 阅读 · 0 评论 -
Subnumbers
#include<iostream> #include<cmath> const int mod=1000000007; using namespace std; long long int base[100005]; void init() { long long int res=0; for(int i=1;i<100005-1;i++) ...原创 2018-09-05 15:25:26 · 399 阅读 · 0 评论 -
PAT顶级
编号 题目 考点 1017 The Best Peak Shape 动态规划 1018 Subnumbers 找规律原创 2018-09-05 15:26:11 · 2091 阅读 · 0 评论
分享