답안 #1095952

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1095952 2024-10-03T13:01:22 Z yoav_s Building Skyscrapers (CEOI19_skyscrapers) C++17
0 / 100
3500 ms 1048576 KB
#include <bits/stdc++.h>

using namespace std;

typedef long long ll;
typedef vector<ll> v;
typedef vector<v> vv;
typedef vector<vv> vvv;
typedef pair<ll, ll> p;
typedef vector<p> vp;
typedef vector<vp> vvp;
typedef vector<vvp> vvvp;
typedef pair<ll, p> tri;
typedef vector<tri> vtri;
typedef vector<vtri> vvtri;
typedef vector<vvtri> vvvtri;
typedef vector<bool> vb;
typedef vector<vb> vvb;
typedef vector<vvb> vvvb;

#define f first
#define s second
#define pb push_back
#define eb emplace_back
#define all(v) (v).begin(),(v).end()

const ll INF = 1e18;
const ll mod = 1e9 + 7;

int main()
{
    ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);
    ll n, t;
    cin >> n >> t;
    vp cells(n);
    for (ll i=  0; i < n; i++) cin >> cells[i].f >> cells[i].s;
    v relevantX, relevantY;
    for (ll i = 0; i < n; i++)
    {
        relevantX.pb(cells[i].f - 1);
        relevantX.pb(cells[i].f);
        relevantX.pb(cells[i].f + 1);
        relevantY.pb(cells[i].s - 1);
        relevantY.pb(cells[i].s);
        relevantY.pb(cells[i].s + 1);
    }
    sort(all(relevantX)); sort(all(relevantY));
    relevantX.erase(unique(all(relevantX)), relevantX.end()); relevantY.erase(unique(all(relevantY)), relevantY.end());
    map<ll, ll> xShrink;
    map<ll, ll> yShrink;
    for (ll i = 0; i < relevantX.size(); i++) xShrink[relevantX[i]] = i + 1;
    for (ll i = 0; i < relevantY.size(); i++) yShrink[relevantY[i]] = i + 1;
    for (ll i = 0; i < n; i++) cells[i] = p(xShrink[cells[i].f], yShrink[cells[i].s]);
    ll maxX = relevantX.size() + 2, maxY = relevantY.size() + 2;
    vvb occupied(maxX, vb(maxY, false));
    for (ll i = 0; i < n; i++) occupied[cells[i].f][cells[i].s] = true;
    set<ll, greater<ll>> available;
    for (ll i = 0; i < n; i++) available.insert(i);
    v order;
    vb possible(n, false);
    vv adjacentStructures(n);
    for (ll i = 0; i < n; i++)
    {
        for (ll j = i + 1; j < n; j++)
        {
            if (abs(cells[i].f - cells[j].f) <= 1 && abs(cells[i].s - cells[j].s) <= 1)
            {
                adjacentStructures[i].pb(j);
                adjacentStructures[j].pb(i);
            }
        }
    }
    v supporting(n);
    for (ll i = 0; i < n; i++) supporting[i] = adjacentStructures[i].size();
    for (ll i = n - 1; i >= 0; i--)
    {
        bool done = false;
        for (ll x : available)
        {
            vv supplyComp(maxX, v(maxY));
            vvvp newSupplyGraph(maxX, vvp(maxY));
            occupied[cells[x].f][cells[x].s] = false;
            for (ll i = 0; i < maxX; i++)
            {
                for (ll j = 0; j < maxY; j++)
                {
                    if (occupied[i][j]) continue;
                    if (i + 1 < maxX && !occupied[i + 1][j])
                    {
                        newSupplyGraph[i][j].eb(i+1,j);
                        newSupplyGraph[i+1][j].eb(i,j);
                    }
                    if (j + 1 < maxY && !occupied[i][j + 1])
                    {
                        newSupplyGraph[i][j].eb(i,j+1);
                        newSupplyGraph[i][j+1].eb(i,j);
                    }
                }
            }
            vv component(maxX, v(maxY, -1));
            ll comp = 0;
            for (ll i = 0; i < maxX; i++)
            {
                for (ll j = 0; j < maxY; j++)
                {
                    if (component[i][j] != -1) continue;
                    stack<p> dfs;
                    dfs.emplace(i, j);
                    while (!dfs.empty())
                    {
                        auto top = dfs.top();
                        dfs.pop();
                        if (component[top.f][top.s] != -1) continue;
                        component[top.f][top.s] = comp;
                        for (auto x : newSupplyGraph[top.f][top.s]) dfs.push(x);
                    }
                    comp++;
                }
            }
            bool poss = true;
            if (component[cells[x].f][cells[x].s] != component[maxX - 1][maxY - 1]) poss = false;
            for (ll x : adjacentStructures[x]) supporting[x]--;
            for (ll y : available)
            {
                if (y != x && supporting[y] == 0 && i != 1)
                {
                    poss = false;
                }
            }
            if (!poss)
            {
                occupied[cells[x].f][cells[x].s] = true;
                for (ll x : adjacentStructures[x]) supporting[x]++;
                continue;
            }
            available.erase(x);
            order.pb(x);
            done = true;
            break;
        }
        if (!done)
        {
            cout << "NO\n";
            return 0;
        }
    }
    reverse(all(order));
    cout << "YES\n";
    for (ll x : order) cout << x + 1 << "\n";
    return 0;
}

Compilation message

skyscrapers.cpp: In function 'int main()':
skyscrapers.cpp:51:22: warning: comparison of integer expressions of different signedness: 'll' {aka 'long long int'} and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   51 |     for (ll i = 0; i < relevantX.size(); i++) xShrink[relevantX[i]] = i + 1;
      |                    ~~^~~~~~~~~~~~~~~~~~
skyscrapers.cpp:52:22: warning: comparison of integer expressions of different signedness: 'll' {aka 'long long int'} and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   52 |     for (ll i = 0; i < relevantY.size(); i++) yShrink[relevantY[i]] = i + 1;
      |                    ~~^~~~~~~~~~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 344 KB ans=YES N=1
2 Correct 0 ms 348 KB ans=YES N=4
3 Correct 0 ms 348 KB ans=NO N=4
4 Correct 0 ms 348 KB ans=YES N=5
5 Correct 0 ms 348 KB ans=YES N=9
6 Correct 0 ms 348 KB ans=YES N=5
7 Correct 1 ms 344 KB ans=NO N=9
8 Correct 2 ms 604 KB ans=NO N=10
9 Incorrect 1 ms 348 KB Contestant did not find solution
10 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 344 KB ans=YES N=1
2 Correct 0 ms 348 KB ans=YES N=4
3 Correct 0 ms 348 KB ans=NO N=4
4 Correct 0 ms 348 KB ans=YES N=5
5 Correct 0 ms 348 KB ans=YES N=9
6 Correct 0 ms 348 KB ans=YES N=5
7 Correct 1 ms 344 KB ans=NO N=9
8 Correct 2 ms 604 KB ans=NO N=10
9 Incorrect 1 ms 348 KB Contestant did not find solution
10 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 344 KB ans=YES N=1
2 Correct 0 ms 348 KB ans=YES N=4
3 Correct 0 ms 348 KB ans=NO N=4
4 Correct 0 ms 348 KB ans=YES N=5
5 Correct 0 ms 348 KB ans=YES N=9
6 Correct 0 ms 348 KB ans=YES N=5
7 Correct 1 ms 344 KB ans=NO N=9
8 Correct 2 ms 604 KB ans=NO N=10
9 Incorrect 1 ms 348 KB Contestant did not find solution
10 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 432 ms 1048576 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 344 KB ans=YES N=1
2 Correct 0 ms 348 KB ans=YES N=4
3 Correct 0 ms 348 KB ans=NO N=4
4 Correct 0 ms 348 KB ans=YES N=5
5 Correct 0 ms 348 KB ans=YES N=9
6 Correct 0 ms 348 KB ans=YES N=5
7 Correct 1 ms 344 KB ans=NO N=9
8 Correct 2 ms 604 KB ans=NO N=10
9 Incorrect 1 ms 348 KB Contestant did not find solution
10 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 3566 ms 20904 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 432 ms 1048576 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -