# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
553625 | InternetPerson10 | 식물 비교 (IOI20_plants) | C++17 | 1 ms | 212 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "plants.h"
#include <bits/stdc++.h>
typedef long long ll;
using namespace std;
ll BIG = 1e7;
vector<ll> ans;
int k, n;
void init(int g, std::vector<int> r) {
k = g;
k--;
n = r.size();
ans.resize(n);
if(k == 1) {
ans.resize(3*n+1);
ans[0] = 0;
for(int i = 0; i < 3*n+1; i++) {
if(r[i%n]) ans[i] = ans[i-1] - 1;
else ans[i] = ans[i-1] + 1;
}
}
return;
}
int compare_plants(int x, int y) {
if(k == 1) {
for(int i = x + n; i <= 3*n; i += n) {
for(int j = y + n; j <= 3*n; j += n) {
int a = min(i-1, j-1);
int b = max(i-1, j-1);
if(ans[b] - ans[a] == b - a) {
if(a == i-1) return -1;
return 1;
}
if(ans[a] - ans[b] == b - a) {
if(a == i-1) return 1;
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... |