#include <bits/stdc++.h>
using namespace std;
#include "towers.h"
#define pb push_back
#define ll long long
#define fi first
#define se second
int k=-1,n;
vector<int> tab;
void init(int N, std::vector<int> H) {
n=N;
for (int i = 0; i < N; ++i)
{
tab.pb(H[i]);
}
for (int i = 0; i < N-1; ++i)
{
if(tab[i]>tab[i+1]){
k=i;
break;
}
}
}
int max_towers(int L, int R, int D){
if(L>=k||R<=k) return 1;
int l=L-1;
int r=k;
while(r-l>1){
int mid=(r+l)/2;
if(tab[mid]>tab[k]-D) r=mid;
else l=mid;
}
int a=l;
l=k;
r=R+1;
while(r-l>1){
int mid=(r+l)/2;
if(tab[mid]>tab[k]-D) l=mid;
else r=mid;
}
if(a==L-1||r==R+1) return 1;
int ans=max(1,a-L+1+R-r+1);
return ans;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
319 ms |
1236 KB |
12th lines differ - on the 1st token, expected: '2', found: '35365' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
1st lines differ - on the 1st token, expected: '13', found: '1' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
1st lines differ - on the 1st token, expected: '13', found: '1' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
454 ms |
1748 KB |
1st lines differ - on the 1st token, expected: '11903', found: '1' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
218 ms |
600 KB |
1st lines differ - on the 1st token, expected: '7197', found: '1' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
1st lines differ - on the 1st token, expected: '13', found: '1' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
319 ms |
1236 KB |
12th lines differ - on the 1st token, expected: '2', found: '35365' |
2 |
Halted |
0 ms |
0 KB |
- |