This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#pragma GCC optimize ("Ofast")
#pragma GCC target ("avx,avx2,fma")
#include"bits/stdc++.h"
using namespace std;
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace __gnu_pbds;
template<class x>
using ordered_set = tree<x, null_type,less<x>, rb_tree_tag,tree_order_statistics_node_update>;
#define int long long
#define endl '\n'
#define mod 1000000007
//\
#define mod 1686876991
int n, t;
int x[200001], y[200001];
int dx[] = {-1, 1, 0, 0, 1, 1, -1, -1};
int dy[] = {0, 0, 1, -1, 1, -1, 1, -1};
set<pair<int,int>> pts;
map<int,map<int,int>> pts2;
set<pair<int,int>> placed;
bitset<200001> taken;
signed main () {
cin.tie(0)->sync_with_stdio(0);
cin >> n >> t;
for (int i = 0 ; i < n ; i++) {
cin >> x[i] >> y[i];
pts.insert({x[i], y[i]});
pts2[x[i]][y[i]] = i;
}
if (n > 1) {
for (int i = 0 ; i < n ; i++) {
bool good = 0;
for (int d = 0 ; d < 8 ; d++) {
int u = x[i] + dx[d];
int v = y[i] + dy[d];
if (pts.count({u, v})) good = 1;
}
if (!good) {
cout << "NO\n";
return 0;
}
}
}
cout << "YES\n";
set<array<int,3>> pos;
int bx = INT_MAX, by = INT_MAX;
int id = 0;
for (int i = 0 ; i < n ; i++) {
if (x[i] < bx) {
bx = x[i], by = y[i];
id = i;
} else if (x[i] == bx and y[i] < by) {
bx = x[i], by = y[i];
id = i;
}
}
pos.insert({bx, -id, by});
while (pos.size()) {
auto [x, i, y] = *pos.begin();
i *= -1;
pts2[x].erase(y);
pos.erase(pos.begin());
cout << i + 1 << endl;
for (int d = 0 ; d < 8 ; d++) {
int u = x + dx[d];
int v = y + dy[d];
if (pts2[u].count(v)) {
pos.insert({u, -pts2[u][v], v});
pts2[u].erase(v);
}
}
}
}
Compilation message (stderr)
skyscrapers.cpp:17:1: warning: multi-line comment [-Wcomment]
17 | //\
| ^
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |