-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path2168.cpp
More file actions
267 lines (259 loc) · 8.16 KB
/
Copy path2168.cpp
File metadata and controls
267 lines (259 loc) · 8.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
#ifndef LOCAL
#pragma GCC optimize("O3,unroll-loops")
#pragma GCC target("avx,avx2,sse,sse2,sse3,sse4,popcnt,bmi,bmi2,lzcnt")
#endif
#include "bits/stdc++.h"
#ifdef DEBUG
#include "includes/debug/debug.hpp"
#else
#define debug(...) 0
#endif
namespace IO {
constexpr bool UNSAFE = false;
constexpr int GLOB_BUF_SIZE = 1 << 15;
#ifndef DEBUG
#define CHANGE_DEFAULT_STREAMS
static struct FastInput {
FastInput() {
if constexpr (UNSAFE) {
chars_read = fread(buf, 1, BUF_SIZE, in);
buf_pos = 0;
buf[0] = (chars_read == 0 ? -1 : buf[0]);
}
}
static constexpr int BUF_SIZE = GLOB_BUF_SIZE;
char buf[BUF_SIZE];
size_t chars_read = 0;
size_t buf_pos = 0;
FILE* in = stdin;
char cur = 0;
inline char get_char() {
if constexpr (!UNSAFE) {
if (buf_pos >= chars_read) {
chars_read = fread(buf, 1, BUF_SIZE, in);
buf_pos = 0;
buf[0] = (chars_read == 0 ? -1 : buf[0]);
}
}
return cur = buf[buf_pos++];
}
template <typename T>
inline FastInput* tie(T) {
return this;
}
inline void sync_with_stdio(bool) {}
inline explicit operator bool() { return cur != -1; }
inline static bool is_blank(char c) { return c <= ' '; }
inline bool skip_blanks() {
while (is_blank(cur) && cur != -1) get_char();
return cur != -1;
}
inline FastInput& operator>>(char& c) {
skip_blanks();
c = cur;
get_char();
return *this;
}
inline FastInput& operator>>(std::string& s) {
if (skip_blanks()) {
s.clear();
do {
s += cur;
} while (!is_blank(get_char()));
}
return *this;
}
template <typename T>
inline FastInput& read_integer(T& n) {
// unsafe, doesn't check that characters are actually digits
n = 0;
if (skip_blanks()) {
int sign = +1;
if (cur == '-') {
sign = -1;
get_char();
}
do {
n += n + (n << 3) + cur - '0';
} while (!is_blank(get_char()));
n *= sign;
}
return *this;
}
template <typename T>
inline typename std::enable_if<std::is_integral<T>::value,
FastInput&>::type
operator>>(T& n) {
return read_integer(n);
}
#if !defined(_WIN32) || defined(_WIN64)
inline FastInput& operator>>(__int128& n) { return read_integer(n); }
#endif
template <typename T>
inline typename std::enable_if<std::is_floating_point<T>::value,
FastInput&>::type
operator>>(T& n) {
// not sure if really fast, for compatibility only
n = 0;
if (skip_blanks()) {
std::string s;
(*this) >> s;
sscanf(s.c_str(), "%lf", &n);
}
return *this;
}
} fast_input;
#define cin IO::fast_input
static struct FastOutput {
static constexpr int BUF_SIZE = GLOB_BUF_SIZE;
char buf[BUF_SIZE];
size_t buf_pos = 0;
static constexpr int TMP_SIZE = GLOB_BUF_SIZE;
char tmp[TMP_SIZE];
FILE* out = stdout;
inline void put_char(char c) {
buf[buf_pos++] = c;
if (buf_pos == BUF_SIZE) {
fwrite(buf, 1, buf_pos, out);
buf_pos = 0;
}
}
~FastOutput() { fwrite(buf, 1, buf_pos, out); }
inline FastOutput& operator<<(char c) {
put_char(c);
return *this;
}
inline FastOutput& operator<<(const char* s) {
while (*s) put_char(*s++);
return *this;
}
inline FastOutput& operator<<(const std::string& s) {
for (auto x : s) put_char(x);
return *this;
}
template <typename T>
inline char* integer_to_string(T n) {
// beware of TMP_SIZE
char* p = tmp + TMP_SIZE - 1;
if (n == 0)
*--p = '0';
else {
bool is_negative = false;
if (n < 0) {
is_negative = true;
n = -n;
}
while (n > 0) {
*--p = (char)('0' + n % 10);
n /= 10;
}
if (is_negative) *--p = '-';
}
return p;
}
template <typename T>
inline typename std::enable_if<std::is_integral<T>::value, char*>::type
stringify(T n) {
return integer_to_string(n);
}
#if !defined(_WIN32) || defined(_WIN64)
inline char* stringify(__int128 n) { return integer_to_string(n); }
#endif
template <typename T>
inline typename std::enable_if<std::is_floating_point<T>::value,
char*>::type
stringify(T n) {
sprintf(tmp, "%.17f", n);
return tmp;
}
template <typename T>
inline FastOutput& operator<<(const T& n) {
auto p = stringify(n);
for (; *p != 0; p++) put_char(*p);
return *this;
}
} fast_output;
#define cout IO::fast_output
#endif
} // namespace IO
// 1-based indexing
template <typename T>
struct Fenwick {
int n;
std::vector<T> t;
Fenwick(int n) : n(n), t(n + 1) {}
// prefix_sum[0..i]
T query(int i) {
T s = 0;
while (i) {
s += t[i];
i -= i & (-i);
}
return s;
}
// range query
T query(int l, int r) { return query(r) - query(l - 1); }
// increase a[i] by v
void update(int i, T v) {
while (i <= n) {
t[i] += v;
i += i & (-i);
}
}
};
using namespace std;
template <class T>
auto compress(const vector<T>& a) {
int n = int(size(a));
vector<pair<T, int>> p(n);
for (int i = 0; i < n; ++i) p[i] = {a[i], i};
sort(begin(p), end(p));
vector<int> compressed(n);
vector<T> vals;
for (int k = 0, rnk = -1; k < n; ++k) {
if (k == 0 or p[k - 1].first < p[k].first)
vals.push_back(p[k].first), ++rnk;
compressed[p[k].second] = rnk;
}
return make_pair(compressed, vals);
}
using ll = int64_t;
using ld = long double;
int main() {
cin.tie(nullptr)->sync_with_stdio(false);
// cout << setprecision(20) << fixed;
int _tests = 1;
// cin >> _tests;
for (int _test = 1; _test <= _tests; ++_test) {
// cout << "Case #" << _test << ": ";
int n;
cin >> n;
vector<int> coords(2 * n);
for (auto& x : coords) cin >> x;
auto [compressed, vals] = compress(coords);
// ith query -> 2 * i, 2 * i + 1
// queries[r] -> (l, i)
int A = (int)vals.size();
vector<tuple<int, int, int>> queries(n);
for (int i = 0; i < n; ++i)
queries[i] = tuple{compressed[2 * i], compressed[2 * i + 1], i};
Fenwick<int> f(A);
vector<int> inside(n);
for (auto& [x, y, i] : queries) swap(x, y), y = A - y;
sort(begin(queries), end(queries));
for (auto& [x, y, i] : queries) y = A - y, swap(x, y);
for (auto [l, r, id] : queries)
inside[id] = f.query(l + 1, r + 1), f.update(l + 1, 1);
vector<int> outside(n);
f.t = vector<int>(A + 1);
for (auto& [x, y, i] : queries) y = A - y;
sort(begin(queries), end(queries));
for (auto& [x, y, i] : queries) y = A - y;
for (auto [l, r, id] : queries)
outside[id] = f.query(r + 1, A), f.update(r + 1, 1);
for (auto x : inside) cout << int(x != 0) << ' ';
cout << '\n';
for (auto x : outside) cout << int(x != 0) << ' ';
cout << '\n';
}
}