# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
301013 | luciocf | Comparing Plants (IOI20_plants) | C++14 | 84 ms | 3452 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>
#include "plants.h"
using namespace std;
const int maxn = 2e5+10;
int n;
int head[maxn];
int r[maxn];
void init(int k, vector<int> a)
{
n = a.size();
for (int i = 0; i < n; i++)
r[i] = a[i];
head[0] = head[1] = 0;
int at = r[0];
for (int i = 1; i < n-1; i++)
{
if (r[i] == at) head[i+1] = head[i];
else
{
head[i+1] = i;
at = r[i];
}
}
}
int compare_plants(int x, int y)
{
if (min(x, y) != 0 && max(x, y) != n-1)
{
if (x < y && head[y] > x) return 0;
if (x > y && head[x] > y) return 0;
if (x < y)
{
if (r[x] == 0) return 1;
return -1;
}
else
{
if (r[y] == 0) return -1;
return 1;
}
}
if (x == 0)
{
if (head[n-1] <= y)
{
if (r[n-1] == 0 && r[y] == 0) return -1;
if (r[n-1] == 1 && r[y] == 1) return 1;
return 0;
}
else
{
if (head[y] > x) return 0;
if (r[x] == 0) return 1;
return -1;
}
}
else if (y == 0)
{
if (head[n-1] <= x)
{
if (r[n-1] == 0 && r[x] == 0) return 1;
if (r[n-1] == 1 && r[x] == 1) return -1;
return 0;
}
else
{
if (head[x] > y) return 0;
if (r[y] == 0) return -1;
return 1;
}
}
if (x == n-1)
{
if (head[y] <= 0)
{
if (r[n-1] == 0 && r[0] == 0) return 1;
if (r[n-1] == 1 && r[0] == 1) return -1;
return 0;
}
else
{
if (head[x] > y) return 0;
if (r[y] == 0) return -1;
return 1;
}
}
else if (y == n-1)
{
if (head[x] <= 0)
{
if (r[n-1] == 0 && r[0] == 0) return -1;
if (r[n-1] == 1 && r[0] == 1) return 1;
return 0;
}
else
{
if (head[y] > x) return 0;
if (r[x] == 0) return 1;
return -1;
}
}
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |