이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "elephants.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N = 50000;
int pos[N];
int x[N];
int n;
set<int> val;
int l;
void init(int N, int L, int X[])
{
n = N;
l = L;
for (int i = 0; i < n; i++) x[i] = X[i];
for (int i = 0; i < n; i++)
{
pos[i] = x[i];
}
}
int update(int ind, int y)
{
int nx[N];
bool added = false;
int curr = 0;
for (int i = 0; i < n; i++)
{
if (x[i] == pos[ind]) continue;
if (x[i] > y && !added)
{
nx[curr] = y;
added = true;
curr++;
}
nx[curr] = x[i];
curr++;
}
if (!added) nx[curr] = y;
swap(x, nx);
int last = -1;
int res = 0;
pos[ind] = y;
for(int i = 0; i < n; i++)
{
if (x[i] > last)
{
last = x[i] + l;
res++;
}
}
return res;
}
# | 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... |