# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1010743 | gaurezzz | Comparing Plants (IOI20_plants) | C++17 | 0 ms | 0 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#define F first
#define S second
#define ll long long
#define nd '\n'
using namespace std;
vector <int> plants;
ll n=0;
void init (int k, vector <int> r){
plants = r;
n = r.size();
}
int compare_plants(int x, int y){
bool menor=1, mayor=1;
for (ll i=x; i<y; i++){
if (plants[i] != 1) mayor=0;
else menor=0;
}
if (mayor) return -1;
else if (menor) return 1;
for (ll i=y; i!=x; i++){
if (i == n) i=0;
if (plants[i] != 1) mayor=0;
else menor=0;
}
if (mayor) return -1;
else if (menor) return 1;
else return 0;
}
int main (){
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
init(3, {0,1,1,2});
cout << compare_plants(0,2) << nd;
cout << compare_plants(1, 2) << nd;
return 0;
}