#pragma GCC optimize("O3")
#include "elephants.h"
#include <bits/stdc++.h>
using namespace std;
int n, l;
vector<int> v;
vector<int> po;
const int INF = (1e9 + 1);
void init(int N, int L, int X[])
{
n = N;
l = L;
v.resize(n);
po.resize(n);
for (int i = 0; i < n; i++) {
po[i] = i;
v[i] = X[i];
}
}
int update(int i, int y) {
if (v[po[i]] < y) {
v[po[i]] = y;
int lst = -INF, qtd = 0;
for (int i = 0; i < n; i++) {
if ((i < (n - 1)) && (v[i] > v[i + 1])) {
swap(v[i], v[i + 1]);
swap(po[i], po[i + 1]);
}
if (v[i] > (lst + l)) {
lst = v[i];
qtd++;
}
}
return qtd;
} else {
v[po[i]] = y;
int lst = INF, qtd = 0;
for (int i = n - 1; i >= 0; i--) {
if ((i > 0) && (v[i] < v[i - 1])) {
swap(v[i], v[i - 1]);
swap(po[i], po[i - 1]);
}
if (v[i] < (lst - l)) {
lst = v[i];
qtd++;
}
}
return qtd;
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
6480 KB |
Output is correct |
2 |
Correct |
1 ms |
6480 KB |
Output is correct |
3 |
Correct |
1 ms |
6480 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
6480 KB |
Output is correct |
2 |
Correct |
1 ms |
6480 KB |
Output is correct |
3 |
Correct |
1 ms |
6480 KB |
Output is correct |
4 |
Incorrect |
1 ms |
6480 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
6480 KB |
Output is correct |
2 |
Correct |
1 ms |
6480 KB |
Output is correct |
3 |
Correct |
1 ms |
6480 KB |
Output is correct |
4 |
Incorrect |
1 ms |
6480 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
6480 KB |
Output is correct |
2 |
Correct |
1 ms |
6480 KB |
Output is correct |
3 |
Correct |
1 ms |
6480 KB |
Output is correct |
4 |
Incorrect |
1 ms |
6480 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
6480 KB |
Output is correct |
2 |
Correct |
1 ms |
6480 KB |
Output is correct |
3 |
Correct |
1 ms |
6480 KB |
Output is correct |
4 |
Incorrect |
1 ms |
6480 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |