Submission #576299

# Submission time Handle Problem Language Result Execution time Memory
576299 2022-06-13T01:42:14 Z PurpleCrayon Paint (COI20_paint) C++17
8 / 100
3000 ms 20248 KB
#include <bits/stdc++.h>
using namespace std;
 
#define sz(v) int(v.size())
#define ar array
typedef long long ll;
const int N = 2e5+10, MOD = 998244353;
const int B = N, K = N / B;

const int dx[4] = {1, 0, -1, 0}, dy[4] = {0, 1, 0, -1};

int n, m, p[N], sz[N];
int col[N];

int find_set(int v) {
    return v == p[v] ? v : p[v] = find_set(p[v]);
}
void union_sets(int a, int b) { // merge, but only in the dsu
    a = find_set(a), b = find_set(b);
    if (a == b) return;
    if (sz[a] < sz[b]) swap(a, b);
    p[b] = a, sz[a] += sz[b], sz[b] = 0;
}
int get_col(int v) {
    return col[find_set(v)];
}

int tt = 0;
int vis[N], use[N];

vector<int> small_adj;
void dfs_small(int v) {
    int i = v / m, j = v % m;
    vis[v] = tt;
    for (int k = 0; k < 4; k++) {
        int ni = i + dx[k], nj = j + dy[k];
        if (ni < 0 || ni >= n || nj < 0 || nj >= m) continue;
        if (vis[ni*m + nj] == tt) continue;
        if (find_set(ni*m + nj) != find_set(v)) {
            if (use[find_set(ni*m + nj)] != tt) {
                small_adj.push_back(find_set(ni*m + nj));
                use[find_set(ni*m + nj)] = tt;
            }
        } else {
            dfs_small(ni*m + nj);
        }
    }
}
void make_big(int v) { // make information for v to be a big component

}
void add_small(int v) { // add v to the info of all surrounding big components

}
void clear_small(int v) { // remove v from the info of all surrounding big components

}
void upd_big(int v, int x) {

}
void upd_small(int v, int x) {
    tt++;
    small_adj.clear();
    dfs_small(v);

    int new_size = sz[find_set(v)];
    for (auto add : small_adj) {
        new_size += sz[find_set(add)];
    }

    if (new_size >= B) {
        make_big(v);
        upd_big(v, x);
    } else {
        clear_small(v);
        for (auto add : small_adj) {
            if (get_col(add) == x) {
                clear_small(add);
            }
        }
        for (auto add : small_adj) {
            if (get_col(add) == x) {
                union_sets(v, add);
            }
        }
        col[find_set(v)] = x;
        add_small(v);
    }
}
void upd(int i, int j, int x) {
    int v = i*m + j;
    if (sz[find_set(v)] >= B) upd_big(v, x);
    else upd_small(v, x);
}

int a[N];
void init() { // initially merge stuff
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < m; j++) {
            p[i*m + j] = i*m + j;
            sz[i*m + j] = 1;
        }
    }
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < m; j++) {
            cin >> a[i*m + j];
            col[i*m + j] = a[i*m + j];
        }
    }
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < m; j++) {
            upd(i, j, a[i*m + j]);
        }
    }
}
void solve() {
    cin >> n >> m;

    init();

    int q; cin >> q;
    while (q--) {
        int i, j, x; cin >> i >> j >> x, --i, --j;
        upd(i, j, x);
    }
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < m; j++)
            cout << col[find_set(i*m + j)] << ' ';

        cout << '\n';
    }
}
int main() {
    ios::sync_with_stdio(false); cin.tie(0);
    int T = 1;
    // cin >> T;
    while (T--) solve();
}
# Verdict Execution time Memory Grader output
1 Correct 1 ms 340 KB Output is correct
2 Correct 1 ms 340 KB Output is correct
3 Correct 4 ms 596 KB Output is correct
4 Correct 8 ms 744 KB Output is correct
5 Correct 1329 ms 1772 KB Output is correct
6 Correct 781 ms 1696 KB Output is correct
7 Correct 0 ms 340 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 36 ms 2644 KB Output is correct
2 Correct 331 ms 5636 KB Output is correct
3 Execution timed out 3062 ms 7320 KB Time limit exceeded
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 3063 ms 20248 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 208 ms 9672 KB Output is correct
2 Execution timed out 3074 ms 6912 KB Time limit exceeded
3 Halted 0 ms 0 KB -