Deque
Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 2054 Accepted Submission(s): 746
Problem Description
Today, the teacher gave Alice extra homework for the girl weren't attentive in his class. It's hard, and Alice is going to turn to you for help.
The teacher gave Alice a sequence of number(named A) and a deque. The sequence exactly contains N integers. A deque is such a queue, that one is able to push or pop the element at its front end or rear end. Alice was asked to take out the elements from the
sequence in order(from A_1 to A_N), and decide to push it to the front or rear of the deque, or drop it directly. At any moment, Alice is allowed to pop the elements on the both ends of the deque. The only limit is, that the elements in the deque should be
non-decreasing.
Alice's task is to find a way to push as many elements as possible into the deque. You, the greatest programmer, are required to reclaim the little girl from despair.
Input
The first line is an integer T(1≤T≤10) indicating the number of test cases.
For each case, the first line is the length of sequence N(1≤N≤100000).
The following line contains N integers A
1,A
2,…,A
N.
Output
For each test case, output one integer indicating the maximum length of the deque.
Sample Input
3
7
1 2 3 4 5 6 7
5
4 3 2 1 5
5
5 4 1 2 3
Sample Output
7
5
3
Source
2013 Multi-University Training Contest 1
#include
#include
#include
#include
#include
using namespace std;
typedef vector::iterator VI;
const int maxn=110000;
const int INF=0x3f3f3f3f;
int a[maxn],n,dp1[maxn],dp2[maxn],num1[maxn],num2[maxn];
void doit(int dp[],int num[])
{
memset(dp,0,sizeof(dp));
memset(num,0,sizeof(num));
vector g; g.clear();
int sz=0;
for(int i=n-1;i>=0;i--)
{
if(!sz||g[sz-1]<=a[i])
{
g.push_back(a[i]); sz++;
dp[i]=sz;
}
else
{
VI item;
item=upper_bound(g.begin(),g.end(),a[i]);
dp[i]=item-g.begin()+1;
*item=a[i];
}
pair bound=equal_range(g.begin(),g.end(),a[i]);
num[i]=bound.second-bound.first;
}
}
int main()
{
int T,ans;
scanf("%d",&T);
while(T--)
{
scanf("%d",&n);
ans=1;
for(int i=0;i