#include <bits/stdc++.h>
using namespace std;
#define fast ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);
#define ll long long int
#define tc ll test;cin >> test;while(test--)
#define vi vector<ll>
#define pll pair<ll,ll>
#define pb push_back
#define mp make_pair
#define INF 1e18
#define MOD 1000000007
#define ff first
#define ss second
#define in >>
#define out <<
#define space << " " <<
#define spacef << " "
#define fo(i,a,b) for(ll i = a; i <= b; i++)
#define rfo(i,a,b) for(ll i = a; i >= b; i--)
#define nextline out "\n"
#define print(x) for(auto i : x ) cout out i spacef
#define mmax(x,i) x = max(x,i)
#define mmin(x,i) x = min(x,i)
#define N 105
int main() {
fast;
ll n;
cin in n;
vector<pll> h(n+5);
fo(i,1,n){
cin in h[i].first;
h[i].second = i;
}
ll ans = -INF;
ll island = 0;
vector<bool> added(n+5,false);
sort(h.rbegin(),h.rend());
fo(i,0,n-1){
added[h[i].second] = true;
if(added[h[i].second-1] == added[h[i].second+1]){
if(added[h[i].second-1] == false) island++;
else island--;
mmax(ans,island);
}
}
cout out ans;
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
204 KB |
Output is correct |
2 |
Correct |
1 ms |
204 KB |
Output is correct |
3 |
Correct |
1 ms |
308 KB |
Output is correct |
4 |
Correct |
1 ms |
332 KB |
Output is correct |
5 |
Correct |
1 ms |
332 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
16 ms |
1868 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
18 ms |
1868 KB |
Output is correct |
2 |
Correct |
14 ms |
2508 KB |
Output is correct |
3 |
Correct |
18 ms |
2712 KB |
Output is correct |
4 |
Correct |
19 ms |
2640 KB |
Output is correct |
5 |
Correct |
19 ms |
2636 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
192 ms |
15960 KB |
Output is correct |
2 |
Correct |
212 ms |
25440 KB |
Output is correct |
3 |
Correct |
211 ms |
25444 KB |
Output is correct |
4 |
Correct |
211 ms |
25444 KB |
Output is correct |
5 |
Correct |
198 ms |
24668 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
206 ms |
15964 KB |
Output is correct |
2 |
Correct |
199 ms |
24656 KB |
Output is correct |
3 |
Correct |
201 ms |
24776 KB |
Output is correct |
4 |
Incorrect |
173 ms |
18900 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |