#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using vi = vector<int>;
using pi = pair<int,int>;
#define REP(i,n) for (int i = 0; i < n; i++)
#define trav(a,x) for (auto &a : x)
#define all(x) (x).begin(), (x).end()
#define submit(a,b) cout << a << " " << b << endl
#define D(x) //cerr << #x << ": " << x << endl;
struct Collection {
vector<int> nums;
void flip(int i) {
/*if (nums.count(i)) nums.erase(i);
else nums.insert(i);*/
bool cont = 0;
trav(a,nums) {if (a == i) {cont = 1;}}
if (!cont) {
nums.push_back(i);
return;
}
vi nums2;
trav(a,nums) {
if (a != i) nums2.push_back(a);
}
nums = nums2;
}
vi get_all() {
return vi(all(nums));
}
};
struct TimeTraveller {
vector<pair<int, Collection*>> history;
TimeTraveller() {
history.push_back({-1, new Collection()});
}
void flip(int i, int time) {
Collection *c = new Collection();
c->nums = (history.back().second)->nums;
c->flip(i);
history.push_back({0, c});
}
vi get_all(int time) {
auto p = lower_bound(all(history), pair<int, Collection*>(time+1, nullptr));
p--;
return (*p).second->get_all();
}
};
const int MAX_N = 1e5+2;
int n,d;
vi hs;
TimeTraveller fr[MAX_N];
int get_ans(vi a, vi b) {
int best = 1e9;
vi h1, h2;
trav(aa, a) {
h1.push_back(hs[aa]);
}
sort(all(h1));
trav(bb, b) {
h2.push_back(hs[bb]);
}
sort(all(h2));
if (h1.size() == 0) return best;
int i = 0;
trav(hb, h2) {
while (h1[i] < hb && i != h1.size()-1) i++;
best = min(best, abs(hb - h1[i]));
if (i!=0) best = min(best, abs(hb - h1[i-1]));
}
return best;
}
void init(int N, int D, int H[]) {
n = N; d = D;
REP(i,n) hs.push_back(H[i]);
}
void curseChanges(int U, int A[], int B[]) {
REP(uu, U) {
int a = A[uu];
int b = B[uu];
fr[a].flip(b, uu+1);
fr[b].flip(a, uu+1);
}
}
int question(int x, int y, int v) {
return get_ans(fr[x].get_all(v), fr[y].get_all(v));
}
Compilation message
potion.cpp: In function 'int get_ans(vi, vi)':
potion.cpp:82:32: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
82 | while (h1[i] < hb && i != h1.size()-1) i++;
| ~~^~~~~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
7 ms |
9048 KB |
Incorrect |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
7 ms |
9048 KB |
Incorrect |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
198 ms |
46724 KB |
Output is correct |
2 |
Correct |
215 ms |
46796 KB |
Output is correct |
3 |
Correct |
141 ms |
57424 KB |
Output is correct |
4 |
Runtime error |
192 ms |
262144 KB |
Execution killed with signal 9 |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
149 ms |
46556 KB |
Incorrect |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
16 ms |
10840 KB |
Incorrect |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
7 ms |
9048 KB |
Incorrect |
2 |
Halted |
0 ms |
0 KB |
- |