题解 1508: 蓝桥杯算法提高VIP-和最大子序列

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

动态规划(C++)代码

摘要:#include <iostream> using namespace std; const int N = 1000010, INF = 0x3f3f3f3f; int a[N],……

DP和最大子序列DP

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){    int n;    int dp[100001];    int……