摘要: 以最大连续子序列和算法为例。 算法源代码: 1 #include<bits/stdc++.h> 2 #define N 1000000 3 using namespace std; 4 5 int n; 6 int a[N],dp[N]; 7 int MAXN=-(1<<30); 8 9 int m 阅读全文
posted @ 2021-05-28 22:59 Wag_Ho 阅读(68) 评论(4) 推荐(1) 编辑