Submission #564540

# Submission time Handle Problem Language Result Execution time Memory
564540 2022-05-19T10:47:04 Z shrimb Building Skyscrapers (CEOI19_skyscrapers) C++17
0 / 100
3500 ms 813384 KB
#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[2001], y[2001];
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<2001> 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";
    priority_queue<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.push({bx, by, id});
    while (pos.size()) {
        auto [x, y, i] = pos.top();
        pts2[x].erase(y);
        pos.pop();
        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.push({u, v, pts2[u][v]});
            }
        }
    }
}

Compilation message

skyscrapers.cpp:17:1: warning: multi-line comment [-Wcomment]
   17 | //\
      | ^
# Verdict Execution time Memory Grader output
1 Correct 0 ms 212 KB ans=YES N=1
2 Incorrect 0 ms 212 KB Each cell must be removed exactly once
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 212 KB ans=YES N=1
2 Incorrect 0 ms 212 KB Each cell must be removed exactly once
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 212 KB ans=YES N=1
2 Incorrect 0 ms 212 KB Each cell must be removed exactly once
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 2 ms 724 KB ans=NO N=1934
2 Correct 1 ms 596 KB ans=NO N=1965
3 Execution timed out 3609 ms 813384 KB Time limit exceeded
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 212 KB ans=YES N=1
2 Incorrect 0 ms 212 KB Each cell must be removed exactly once
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 596 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 2 ms 724 KB ans=NO N=1934
2 Correct 1 ms 596 KB ans=NO N=1965
3 Execution timed out 3609 ms 813384 KB Time limit exceeded
4 Halted 0 ms 0 KB -