結果

問題 No.1266 7 Colors
ユーザー oevloevl
提出日時 2020-10-27 04:22:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 295 ms / 3,000 ms
コード長 1,791 bytes
コンパイル時間 2,067 ms
コンパイル使用メモリ 209,196 KB
実行使用メモリ 14,944 KB
最終ジャッジ日時 2024-07-21 21:50:00
合計ジャッジ時間 9,058 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 237 ms
5,760 KB
testcase_04 AC 281 ms
11,264 KB
testcase_05 AC 237 ms
6,400 KB
testcase_06 AC 284 ms
12,160 KB
testcase_07 AC 295 ms
13,312 KB
testcase_08 AC 284 ms
11,520 KB
testcase_09 AC 262 ms
9,728 KB
testcase_10 AC 270 ms
8,960 KB
testcase_11 AC 253 ms
6,944 KB
testcase_12 AC 245 ms
7,680 KB
testcase_13 AC 241 ms
8,192 KB
testcase_14 AC 234 ms
6,272 KB
testcase_15 AC 289 ms
13,568 KB
testcase_16 AC 237 ms
7,808 KB
testcase_17 AC 283 ms
13,100 KB
testcase_18 AC 258 ms
14,944 KB
testcase_19 AC 160 ms
14,492 KB
testcase_20 AC 157 ms
14,576 KB
testcase_21 AC 218 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

class UnionFind {
public:
    vector<int> uni;
    UnionFind(int s) : uni(s, -1) {}
    int root(int a) {
        return uni[a] < 0 ? a : uni[a] = root(uni[a]);
    }
    bool merge(int a, int b) {
        a = root(a);
        b = root(b);
        if(a == b) return false;
        if(uni[a] > uni[b]) swap(a, b);
        uni[a] = uni[a] + uni[b];
        uni[b] = a;
        return true;
    }
    bool same(int a, int b) {
        return root(a) == root(b);
    }
    int size(int a) {
        return -uni[root(a)];
    }
};

int main() {
    int n, m, q;
    cin >> n >> m >> q;
    vector<string> s(n);
    for(auto &e : s) {
        cin >> e;
    }
    UnionFind uf(7 * n);
    vector<vector<int>> G(n);

    auto connect = [&](int i, int j, int k, int l) -> void {
        j = (j + 7) % 7;
        l = (l + 7) % 7;
        if(s[i][j] == '0' || s[k][l] == '0') {
            return;
        }
        uf.merge(7 * i + j, 7 * k + l);
    };

    auto add = [&](int x, int y) -> void {
        s[x][y] = '1';
        connect(x, y, x, y - 1);
        connect(x, y, x, y + 1);
        for(auto &to : G[x]) {
            connect(x, y, to, y);
        }
    };

    for(int i = 0; i < n; ++i) {
        for(int j = 0; j < 7; ++j) {
            connect(i, j, i, j + 1);
        }
    }

    for(int i = 0; i < m; ++i) {
        int a, b;
        cin >> a >> b;
        a--, b--;
        for(int j = 0; j < 7; ++j) {
            connect(a, j, b, j);
        }
        G[a].emplace_back(b);
        G[b].emplace_back(a);
    }

    while(q--) {
        int t, x, y;
        cin >> t >> x >> y;
        x--, y--;
        if(t == 1) {
            add(x, y);
        } else {
            cout << uf.size(7 * x) << '\n';
        }
    }
    return 0;
}
0