一个小时五道编程题目做哭了,一脸懵逼; 1.给定n个区间,求不重复的区间长度;(这个没做出来) 2.输出严格单调递增的子序列长度 ac:46% #include <iostream> #include <vector> using namespace std; vector <int> compute1(vector<int> &a); vector <int> compute2(vector<int> &ab,vector<int> &dp); int...