Submission #413776

#TimeUsernameProblemLanguageResultExecution timeMemory
413776timmyfengSeats (IOI18_seats)C++17
37 / 100
4067 ms103248 KiB
#include <bits/stdc++.h>
using namespace std;

const int N = 1000000;

array<int, 2> pos[N];
vector<int> seats[N];
int n, m;

int mini[4 * N], tally[4 * N], lazy[4 * N];

void apply(int u, int x) {
    lazy[u] += x, mini[u] += x;
}

void push(int u) {
    if (lazy[u] != 0) {
        apply(2 * u, lazy[u]);
        apply(2 * u + 1, lazy[u]);
        lazy[u] = 0;
    }
}

void pull(int u) {
    mini[u] = min(mini[2 * u], mini[2 * u + 1]);
    tally[u] = 0;
    if (mini[2 * u] == mini[u]) {
        tally[u] += tally[2 * u];
    }
    if (mini[2 * u + 1] == mini[u]) {
        tally[u] += tally[2 * u + 1];
    }
}

void build(int u, int l, int r) {
    tally[u] = r - l + 1;
    if (l < r) {
        int m = (l + r) / 2;
        build(2 * u, l, m);
        build(2 * u + 1, m + 1, r);
    }
}

void update(int u, int a, int b, int x, int l, int r) {
    if (a > b || b < l || r < a) {
        return;
    } else if (a <= l && r <= b) {
        apply(u, x);
    } else {
        push(u);
        int m = (l + r) / 2;
        update(2 * u, a, b, x, l, m);
        update(2 * u + 1, a, b, x, m + 1, r);
        pull(u);
    }
}

void update(int i, int j, int x) {
    vector<int> in;
    for (auto ki : {-1, 0}) {
        for (auto kj : {-1, 0}) {
            if (0 <= i + ki && i + ki < n && 0 <= j + kj && j + kj < m) {
                in.push_back(seats[i + ki][j + kj]);
            } else {
                in.push_back(n * m);
            }
        }
    }
    sort(in.begin(), in.end());

    update(1, in[0], in[1] - 1, x, 0, n * m - 1);
    update(1, in[2], in[3] - 1, 4 * x, 0, n * m - 1);
}

void give_initial_chart(int n, int m, vector<int> r, vector<int> c) {
    ::n = n, ::m = m;
    fill(seats, seats + n, vector<int>(m));
    for (int i = 0; i < n * m; ++i) {
        seats[r[i]][c[i]] = i;
        pos[i] = {r[i], c[i]};
    }

    build(1, 0, n * m - 1);
    for (int i = 0; i <= n; ++i) {
        for (int j = 0; j <= m; ++j) {
            update(i, j, 1);
        }
    }
}

int swap_seats(int a, int b) {
    vector<array<int, 2>> cells;
    for (auto k : {a, b}) {
        auto [i, j] = pos[k];
        for (auto ki : {0, 1}) {
            for (auto kj : {0, 1}) {
                cells.push_back({i + ki, j + kj});
            }
        }
    }

    sort(cells.begin(), cells.end());
    cells.erase(unique(cells.begin(), cells.end()), cells.end());

    for (auto [i, j] : cells) {
        update(i, j, -1);
    }

    swap(seats[pos[a][0]][pos[a][1]], seats[pos[b][0]][pos[b][1]]);
    swap(pos[a], pos[b]);

    for (auto [i, j] : cells) {
        update(i, j, 1);
    }

    return tally[1];
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...