最长上升子序列板子及序列和
作者:
再也不会
,
2021-08-08 21:16:07
,
所有人可见
,
阅读 247
#include<bits/stdc++.h>
using namespace std;
int main(void) {
int n; cin >> n;
vector<int>arr(n);
for (int i = 0; i < n; ++i)cin >> arr[i];
int num=0;
vector<int>stk;
stk.push_back(arr[0]);
for (int i = 1; i < n; ++i) {
if (arr[i] > stk.back())
stk.push_back(arr[i]),num+=arr[i];
else
num+=arr[i]- *lower_bound(stk.begin(), stk.end(), arr[i]),*lower_bound(stk.begin(), stk.end(), arr[i]) = arr[i];
}
cout << stk.size() << endl;
cout<<num<<endl;
for(int i=0;i<stk.size();++i)
cout<<stk[i]<<" ";
return 0;
}