-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathA_DZY_Loves_Sequences.cpp
101 lines (76 loc) · 2 KB
/
A_DZY_Loves_Sequences.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#include <bits/stdc++.h>
using namespace std;
// #define int long long
#define TestCases int TOTALTC ; cin >> TOTALTC ; for(_case = 1 ; _case <= TOTALTC ; _case++)
#define FAST ios_base::sync_with_stdio(0); cin.tie(NULL); cout.tie(NULL);
#define all(x) (x).begin() , (x).end()
#define nl "\n"
int _case = 1 ;
const int N = 1e5 + 5;
int arr[N];
int l[N];
int r[N];
void solve()
{
int n; cin >> n;
vector<int> v(n); for (auto &x : v) cin >> x;
int curr = -1 ;
vector<pair<int,int>> a ;
for(int i = 0 ; i < n ; i++)
{
curr = -1 ;
int s = i ;
int e = -1 ;
int j = i ;
for( j = i ; j < n ; j++)
{
if(v[j]>curr)
{
curr = v[j] ;
e = j ;
}
else
{
i = j - 1 ;
break;
}
}
i = j - 1 ;
a.push_back({s,e}) ;
}
int ans = 0 ;
if(a.size()==1) ans = n ;
int maxsegsize = -1 ;
for (auto &[x, y] : a)
maxsegsize = max(maxsegsize,(y - x + 1));
for(int i = 0 ; i + 1 < a.size() ; i++)
{
auto &[s1, e1] = a[i];
auto &[s2, e2] = a[i + 1];
if(i + 2 < a.size())
{
auto &[s3, e3] = a[i + 2];
if ((s3 - e1 == 2) and (v[s3] > v[e1] + 1))
{
ans = max(e3 - s1 + 1 , ans ) ;
}
}
if(e1 > 0 and e1 + 1 < n)
{
auto cp = v[e1] ;
v[e1] = v[e1-1] + 1 ;
if( e1 and v[e1 + 1] > v[e1-1] + 1)
{
if( e1+1 <= e2 ) ans = max(e2 - s1 + 1 , ans) ;
else ans = max(e1 + 1 - s1 + 1 , ans) ;
}
v[e1] = cp ;
}
if(v[s2+1] <= v[e1] + 1 ) continue;
ans = max(e2 - s1 + 1 , ans ) ;
}
if (ans < 1 + maxsegsize)
ans = min(1 + maxsegsize, n);
cout << ans << nl ;
}
signed main(){ FAST solve() ; }