首页 > 其他 > 详细

HDU 5532 Almost Sorted Array

时间:2015-11-11 20:40:07      阅读:278      评论:0      收藏:0      [点我收藏+]

Almost Sorted Array

Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 262144/262144 K (Java/Others)
Total Submission(s): 831    Accepted Submission(s): 293


Problem Description

We are all familiar with sorting algorithms: quick sort, merge sort, heap sort, insertion sort, selection sort, bubble sort, etc. But sometimes it is an overkill to use these algorithms for an almost sorted array.

We say an array is sorted if its elements are in non-decreasing order or non-increasing order. We say an array is almost sorted if we can remove exactly one element from it, and the remaining array is sorted. Now you are given an array a1,a2,…,an, is it almost sorted?

Input

The first line contains an integer T indicating the total number of test cases. Each test case starts with an integer n in one line, then one line with n integers a1,a2,…,an.

1≤T≤2000
2≤n≤105
1≤ai≤105
There are at most 20 test cases with n>1000.

Output

For each test case, please output "`YES`" if it is almost sorted. Otherwise, output "`NO`" (both without quotes).

Sample Input
3
3
2 1 7
3
3 2 1
5
3 1 4 1 5
 

 

Sample Output
YES
YES
NO
 

 

Source
 
解题:直接拿LIS刷几遍就是了
技术分享
 1 #include <bits/stdc++.h>
 2 using namespace std;
 3 const int maxn = 100010;
 4 const int INF = 0x3f3f3f3f;
 5 int a[maxn],d[maxn];
 6 int main() {
 7     int kase,n;
 8     scanf("%d",&kase);
 9     while(kase--) {
10         scanf("%d",&n);
11         memset(d,0x3f,sizeof d);
12         for(int i = 0; i < n; ++i) {
13             scanf("%d",a + i);
14             *upper_bound(d,d + n,a[i]) = a[i];
15         }
16         auto ret = lower_bound(d,d + n,INF) - d;
17         memset(d,0x3f,sizeof d);
18         for(int i = 0; i < n; ++i)
19             *upper_bound(d,d + n,-a[i]) = -a[i];
20         ret = max(ret,lower_bound(d,d + n,INF) - d);
21         printf("%s\n",ret >= n - 1?"YES":"NO");
22     }
23     return 0;
24 }
View Code

 

HDU 5532 Almost Sorted Array

原文:http://www.cnblogs.com/crackpotisback/p/4957216.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!