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 <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int MAXN = 5e5 + 25;
const ll inf = 1e16;
#define mid ((l + r) >> 1)
#define tl (node << 1)
#define tr (node << 1 | 1)
struct SegmentTree1 {
pair <ll, ll> tree[MAXN << 1];
void update (int l, int r, int a, ll b, int node) {
if (l > a || r < a) return;
if (l == r) {
tree[node] = {b, l};
return;
}
update(l, mid, a, b, tl); update(mid + 1, r, a, b, tr);
tree[node] = max(tree[tl], tree[tr]);
}
pair <ll, ll> get (int l, int r, int a, int b, int node) {
if (l > b || r < a) return {-inf, 0};
if (l >= a && r <= b) return tree[node];
return max(get(l, mid, a, b, tl), get(mid + 1, r, a, b, tr));
}
} cur1;
struct SegmentTree2 {
pair <ll, ll> tree[MAXN << 1];
void update (int l, int r, int a, ll b, int node) {
if (l > a || r < a) return;
if (l == r) {
tree[node] = {b, l};
return;
}
update(l, mid, a, b, tl); update(mid + 1, r, a, b, tr);
tree[node] = min(tree[tl], tree[tr]);
}
pair <ll, ll> get (int l, int r, int a, int b, int node) {
if (l > b || r < a) return {inf, 0};
if (l >= a && r <= b) return tree[node];
return min(get(l, mid, a, b, tl), get(mid + 1, r, a, b, tr));
}
} cur2;
array <ll, 2> a[MAXN];
int n;
bool vis[MAXN];
vector <int> topo;
void dfs (int pos) {
vis[pos] = 1;
cur1.update(1, n, pos, -inf, 1);
cur2.update(1, n, pos, inf, 1);
while (true) {
int l = 1, r = n, ans = -1;
while (l <= r) {
if (a[mid][0] <= a[pos][0]) {
ans = mid; l = mid + 1;
} else {
r = mid - 1;
}
}
auto x = cur1.get(1, n, 1, ans, 1);
if (x.first < a[pos][0] - a[pos][1]) {
break;
}
dfs(x.second);
}
while (true) {
int l = 1, r = n, ans = -1;
while (l <= r) {
if (a[mid][0] >= a[pos][0]) {
ans = mid; r = mid - 1;
} else {
l = mid + 1;
}
}
auto x = cur2.get(1, n, ans, n, 1);
if (x.first > a[pos][0] + a[pos][1]) {
break;
}
dfs(x.second);
}
topo.push_back(pos);
}
int comp[MAXN];
void dfs2 (int pos, int c) {
comp[pos] = c; vis[pos] = 1;
cur1.update(1, n, pos, -inf, 1);
cur2.update(1, n, pos, inf, 1);
while (true) {
int l = 1, r = n, ans = -1;
while (l <= r) {
if (a[mid][0] <= a[pos][0]) {
ans = mid; l = mid + 1;
} else {
r = mid - 1;
}
}
auto x = cur1.get(1, n, 1, ans, 1);
if (x.first < a[pos][0] + a[pos][1]) {
break;
}
dfs2(x.second, c);
}
while (true) {
int l = 1, r = n, ans = -1;
while (l <= r) {
if (a[mid][0] >= a[pos][0]) {
ans = mid; r = mid - 1;
} else {
l = mid + 1;
}
}
auto x = cur2.get(1, n, ans, n, 1);
if (x.first > a[pos][0] - a[pos][1]) {
break;
}
dfs2(x.second, c);
}
}
vector <int> occ[MAXN];
int deg[MAXN];
void solve () {
cin >> n;
for (int i = 1; i <= n; i++) {
cin >> a[i][0] >> a[i][1];
}
sort(a + 1, a + n + 1);
/* for (int i = 1; i <= n; i++) {
for (int j = 1; j <= n; j++) {
if (i == j) continue;
if (abs(a[i][0] - a[j][0]) <= a[i][1] - a[j][1]) {
cout << i << " " << j << '\n';
}
}
}*/
for (int i = 1; i <= n; i++) {
cur1.update(1, n, i, a[i][0] - a[i][1], 1);
cur2.update(1, n, i, a[i][0] + a[i][1], 1);
}
for (int i = 1; i <= n; i++) {
if (!vis[i]) {
dfs(i);
}
}
reverse(topo.begin(), topo.end());
memset(vis, 0, sizeof(vis));
for (int i = 1; i <= n; i++) {
cur1.update(1, n, i, a[i][0] + a[i][1], 1);
cur2.update(1, n, i, a[i][0] - a[i][1], 1);
}
int cnt = 0;
for (auto i : topo) {
if (!vis[i]) {
dfs2(i, ++cnt);
}
}
for (int i = 1; i <= n; i++) {
occ[comp[i]].push_back(i);
}
for (int i = 1; i <= n; i++) {
cur1.update(1, n, i, a[i][0] + a[i][1], 1);
cur2.update(1, n, i, a[i][0] - a[i][1], 1);
}
for (int i = 1; i <= cnt; i++) {
for (auto j : occ[i]) {
cur1.update(1, n, j, -inf, 1);
cur2.update(1, n, j, inf, 1);
}
for (auto j : occ[i]) {
{
int l = 1, r = n, ans = -1;
while (l <= r) {
if (a[mid][0] <= a[j][0]) {
ans = mid; l = mid + 1;
} else {
r = mid - 1;
}
}
auto x = cur1.get(1, n, 1, ans, 1);
if (x.first >= a[j][0] + a[j][1]) {
deg[i]++;
}
}
{
int l = 1, r = n, ans = -1;
while (l <= r) {
if (a[mid][0] >= a[j][0]) {
ans = mid; r = mid - 1;
} else {
l = mid + 1;
}
}
auto x = cur2.get(1, n, ans, n, 1);
if (x.first <= a[j][0] - a[j][1]) {
deg[i]++;
}
}
}
for (auto j : occ[i]) {
cur1.update(1, n, j, a[j][0] + a[j][1], 1);
cur2.update(1, n, j, a[j][0] - a[j][1], 1);
}
}
int ans = 0;
for (int i = 1; i <= cnt; i++) {
if (!deg[i]) {
ans++;
}
}
cout << ans << '\n';
}
signed main () {
ios::sync_with_stdio(0); cin.tie(0);
int tc = 1; //cin >> tc;
while (tc--) solve();
}
# | 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... |