Starfirz
Starfirz
全部文章
分类
题解(2)
归档
标签
去牛客网
登录
/
注册
Starfirz的博客
全部文章
(共1篇)
最长递增(减)子序列
// runtime: 4ms // space: 504K #include <iostream> #include <cstdio> using namespace std; const int MAX = 25; int arr[MAX]; int dp[MAX]; ...
动规
2020-03-17
3
822