# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1041372 | vjudge1 | 식물 비교 (IOI20_plants) | C++17 | 177 ms | 16620 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "plants.h"
#include<bits/stdc++.h>
using namespace std;
set<int> zero,one;
int n;
void init(int k, std::vector<int> r) {
n=r.size();
for(int i=0;i<n;i++)
if(r[i])
one.insert(i);
else zero.insert(i);
return;
}
bool noone(int x,int y){
if(x>y) return noone(x,n)&&noone(0,y);
return one.lower_bound(x)==one.lower_bound(y);
}
bool nozero(int x,int y){
if(x>y) return nozero(x,n)&&nozero(0,y);
return zero.lower_bound(x)==zero.lower_bound(y);
}
int compare_plants(int x, int y) {
if(noone(x,y)) return 1;
if(nozero(x,y)) return -1;
if(noone(y,x)) return -1;
if(nozero(y,x)) return 1;
return 0;
}
컴파일 시 표준 에러 (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... |