# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
584457 | benson1029 | Dancing Elephants (IOI11_elephants) | C++14 | 6889 ms | 24496 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 "elephants.h"
#include<bits/stdc++.h>
using namespace std;
int n;
int RTN;
int cntGRP;
int l;
int a[150005];
int grp[150005];
vector<int> grpv[150005], dis[150005], nxt[150005];
vector< pair<int,int> > v;
int round_cnt = 0;
void calcgroup(int i) {
dis[i].resize(grpv[i].size());
nxt[i].resize(grpv[i].size());
int ptr = grpv[i].size()-1;
for(int j=grpv[i].size()-1; j>=0; j--) {
while(ptr > 0 && grpv[i][ptr] - grpv[i][j] > l) ptr--;
if(ptr == grpv[i].size()-1) {
dis[i][j] = 1;
nxt[i][j] = grpv[i][j] + l + 1;
} else {
dis[i][j] = dis[i][ptr+1] + 1;
nxt[i][j] = nxt[i][ptr+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... |