# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
99620 | naoai | 코끼리 (Dancing Elephants) (IOI11_elephants) | C++14 | 6885 ms | 12164 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "elephants.h"
#include <bits/stdc++.h>
using namespace std;
static const int nmax = 15e4;
static const int rad = 400 * 4;
static int n, L;
static int up_cnt;
static int bucket[nmax + 1];
static pair<int, int> pozitii[nmax + 1];
static int nrb;
static int sz[nmax / rad + 1];
struct str {
int x, ind, pos, dp;
};
str v[nmax / rad + 1][2 * rad + 5];
void compute (int b) {
int ind = sz[b];
for (int i = sz[b] - 1; i >= 0; -- i) {
while (ind - 1 > i && v[b][ind - 1].x > v[b][i].x + L) {
-- ind;
}
if (ind == sz[b]) {
# | 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... |