摘要: 最长上升子序列dp法 #include<bits/stdc++.h> #define M 100005 using namespace std; int a[M]={0,389,207,155,300,299,170,158,65}; int dp[M]; int main(){ int len = 阅读全文