이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "plants.h"
#include <bits/stdc++.h>
using namespace std;
const int M = 200005;
int pref[M];
int n;
int sum(int l,int r){
if(r < l){
return sum(0,r)+sum(l,n-1);
}
return pref[r+1]-pref[l];
}
void init(int k, vector<int> r) {
n = r.size();
for(int i=0;i<n;i++){
pref[i+1] = pref[i]+r[i];
}
return;
}
bool istaller(int x,int y){
if(x > y && sum(x,(y > 0 ? y-1 : n-1)) == 0)return true;
int range = sum(0,n-1)-sum(x,y);
if(x< y && range == n-abs(x-y)-1)return true;
return false;
}
int compare_plants(int x, int y) {
if(istaller(x,y))return 1;
if(istaller(y,x))return -1;
return 0;
}
# | 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... |