#include <bits/stdc++.h>
using namespace std;
#define pb push_back
#define ll long long
#define pll pair<ll, ll>
#define FOR(i, a, b) for (signed ll i = (signed ll)(a); i < (signed ll)(b); i++)
#define NEGFOR(i, a, b) for (ll i = (a); i > (b); i--)
#define vll vector<ll>
#define sll set<ll>
#define ld long double
#define inf 1000000000000000000
#define mll multiset<ll>
#define vpll vector<pll>
#define nn << "\n"
#define ss << " "
//10^8 operations per second
//greatest int is 2,147,483,647
//greates long long is 9.22337204e18
//ALL FUNCTIONS SHOULD BE LL!!!!
vector<int> parent(1000000),sz(1000000);
void make_set(ll v) {
parent[v] = v;
sz[v] = 1;
}
int find_set(ll v) {
if (v == parent[v])
return v;
return parent[v] = find_set(parent[v]);
}
void unite(ll a, ll b) {
a = find_set(a);
b = find_set(b);
if (a != b) {
if (sz[a] < sz[b])
swap(a, b);
parent[b] = a;
sz[a] += sz[b];
}
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
ll n; cin>>n;
vector<pair<int, int> > v(n);
FOR(i,0,n){
cin>>v[i].first; v[i].second=i;
}
sort(v.rbegin(),v.rend());
vector<bool> risen(n+5);
ll curr=0,ans=1;
FOR(i,0,n){
make_set(v[i].second);
curr++;
risen[v[i].second]=1;
if (v[i].second && risen[v[i].second-1]){
unite(v[i].second-1,v[i].second); --curr;
}
if (v[i].second+1 < n && risen[v[i].second+1]){
unite(v[i].second+1,v[i].second);--curr;
}
if (i+1<n&&v[i+1].second==v[i].second) continue;
ans=max(ans,curr);
}
cout<<ans;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
6 ms |
8320 KB |
Output is correct |
2 |
Correct |
7 ms |
8172 KB |
Output is correct |
3 |
Correct |
7 ms |
8172 KB |
Output is correct |
4 |
Correct |
6 ms |
8320 KB |
Output is correct |
5 |
Correct |
6 ms |
8172 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
27 ms |
8940 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
29 ms |
9068 KB |
Output is correct |
2 |
Correct |
21 ms |
8940 KB |
Output is correct |
3 |
Correct |
29 ms |
8940 KB |
Output is correct |
4 |
Correct |
29 ms |
9068 KB |
Output is correct |
5 |
Correct |
28 ms |
8940 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
342 ms |
16108 KB |
Output is correct |
2 |
Correct |
304 ms |
16364 KB |
Output is correct |
3 |
Correct |
302 ms |
16236 KB |
Output is correct |
4 |
Correct |
302 ms |
16236 KB |
Output is correct |
5 |
Correct |
292 ms |
16180 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
305 ms |
16236 KB |
Output is correct |
2 |
Correct |
330 ms |
16180 KB |
Output is correct |
3 |
Correct |
306 ms |
16236 KB |
Output is correct |
4 |
Incorrect |
261 ms |
16236 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |