// #include "plants.h"
// #include <bits/stdc++.h>
// using namespace std;
// const int N=200100;
// int n,vis[N];
// vector<int> ma[N];
// void init(int k, std::vector<int> r) {
// n=r.size();
// for(int i=0;i<n;i++)
// {
// int j=(i+1)%n;
// if(r[i]==0)
// {
// // j < i
// ma[j].push_back(i);
// }
// else
// {
// // i < j
// ma[i].push_back(j);
// }
// }
// }
// void dfs(int x)
// {
// vis[x]=1;
// for(auto y:ma[x])
// {
// if(!vis[y])
// {
// dfs(y);
// }
// }
// }
// int compare_plants(int x, int y){
// for(int i=0;i<n;i++)vis[i]=0;
// dfs(x);
// if(vis[y])
// {
// return -1;
// }
// else
// {
// for(int i=0;i<n;i++)vis[i]=0;
// dfs(y);
// if(vis[x])
// {
// return 1;
// }
// else
// {
// return 0;
// }
// }
// // if(cp[x]==cp[y])
// // {
// // if(od[x]==od[y])return 0;
// // return ((od[x]<od[y])?-1:1);
// // }
// // else
// // return 0;
// }
#include "plants.h"
#include <bits/stdc++.h>
using namespace std;
const int N=200100;
const int LG=19;
int mi[N][LG],mx[N][LG],lg[N],n;
int get_mx(int l,int r)
{
if(l>r)return -2;
int lp=lg[r-l+1];
//
return max(mx[l][lp],mx[r-(1<<lp)+1][lp]);
}
int get_mi(int l,int r)
{
if(l>r)return 2;
int lp=lg[r-l+1];
//
return min(mi[l][lp],mi[r-(1<<lp)+1][lp]);
}
void init(int k, std::vector<int> r) {
n=r.size();
lg[0]=0;
lg[1]=0;
for(int i=2;i<=n;i++)
lg[i]=lg[i/2]+1;
for(int i=0;i<n;i++)
mx[i][0]=mi[i][0]=r[i];
for(int j=1;j<LG;j++)
{
for(int i=0;(i+(1<<j)-1)<n;i++)
{
mx[i][j]=max(mx[i][j-1],mx[i+(1<<(j-1))][j-1]);
mi[i][j]=min(mi[i][j-1],mi[i+(1<<(j-1))][j-1]);
}
}
return;
}
int compare_plants(int x, int y) {
int mxp=get_mx(x,y-1);
int mip=get_mi(x,y-1);
if(mxp==mip)
{
if(mxp==0)
{
return 1;
}
else
{
return -1;
}
}
else
{
int mx1=get_mx(y,n-1);
int mi1=get_mi(y,n-1);
mx1=max(mx1,get_mx(0,x-1));
mi1=min(mi1,get_mi(0,x-1));
if(mx1==mi1)
{
if(mx1==0)
{
return -1;
}
else
{
return 1;
}
}
}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Correct |
0 ms |
348 KB |
Output is correct |
4 |
Correct |
1 ms |
348 KB |
Output is correct |
5 |
Correct |
0 ms |
348 KB |
Output is correct |
6 |
Correct |
36 ms |
4024 KB |
Output is correct |
7 |
Correct |
43 ms |
8532 KB |
Output is correct |
8 |
Correct |
103 ms |
37712 KB |
Output is correct |
9 |
Correct |
87 ms |
37716 KB |
Output is correct |
10 |
Correct |
86 ms |
37716 KB |
Output is correct |
11 |
Correct |
89 ms |
37720 KB |
Output is correct |
12 |
Correct |
86 ms |
37716 KB |
Output is correct |
13 |
Correct |
77 ms |
37712 KB |
Output is correct |
14 |
Correct |
96 ms |
37712 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Correct |
0 ms |
348 KB |
Output is correct |
4 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Correct |
0 ms |
348 KB |
Output is correct |
4 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Correct |
0 ms |
348 KB |
Output is correct |
4 |
Correct |
1 ms |
348 KB |
Output is correct |
5 |
Correct |
0 ms |
348 KB |
Output is correct |
6 |
Correct |
36 ms |
4024 KB |
Output is correct |
7 |
Correct |
43 ms |
8532 KB |
Output is correct |
8 |
Correct |
103 ms |
37712 KB |
Output is correct |
9 |
Correct |
87 ms |
37716 KB |
Output is correct |
10 |
Correct |
86 ms |
37716 KB |
Output is correct |
11 |
Correct |
89 ms |
37720 KB |
Output is correct |
12 |
Correct |
86 ms |
37716 KB |
Output is correct |
13 |
Correct |
77 ms |
37712 KB |
Output is correct |
14 |
Correct |
96 ms |
37712 KB |
Output is correct |
15 |
Correct |
1 ms |
348 KB |
Output is correct |
16 |
Correct |
0 ms |
348 KB |
Output is correct |
17 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
18 |
Halted |
0 ms |
0 KB |
- |