結果

問題 No.1266 7 Colors
ユーザー mencottonmencotton
提出日時 2020-11-02 15:54:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 352 ms / 3,000 ms
コード長 1,997 bytes
コンパイル時間 901 ms
コンパイル使用メモリ 78,944 KB
実行使用メモリ 14,944 KB
最終ジャッジ日時 2024-07-22 06:19:16
合計ジャッジ時間 8,627 ms
ジャッジサーバーID
(参考情報)
judge1 / 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 295 ms
5,760 KB
testcase_04 AC 340 ms
11,264 KB
testcase_05 AC 285 ms
6,272 KB
testcase_06 AC 341 ms
12,160 KB
testcase_07 AC 328 ms
13,312 KB
testcase_08 AC 319 ms
11,648 KB
testcase_09 AC 347 ms
9,728 KB
testcase_10 AC 313 ms
8,960 KB
testcase_11 AC 287 ms
6,912 KB
testcase_12 AC 306 ms
7,808 KB
testcase_13 AC 316 ms
8,192 KB
testcase_14 AC 290 ms
6,144 KB
testcase_15 AC 352 ms
13,568 KB
testcase_16 AC 309 ms
7,936 KB
testcase_17 AC 346 ms
13,056 KB
testcase_18 AC 276 ms
14,944 KB
testcase_19 AC 185 ms
14,592 KB
testcase_20 AC 185 ms
14,592 KB
testcase_21 AC 232 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;

struct UnionFind {
    vector<int> data;

    UnionFind(int sz) {
        data.assign(sz, -1);
    }

    bool unite(int x, int y) {
        x = find(x), y = find(y);
        if (x == y) return (false);
        if (data[x] > data[y]) swap(x, y);
        data[x] += data[y];
        data[y] = x;
        return (true);
    }

    int find(int k) {
        if (data[k] < 0) return (k);
        return (data[k] = find(data[k]));
    }

    int size(int k) {
        return (-data[find(k)]);
    }
};

int main() {
    int n, m, q;
    cin >> n >> m >> q;

    UnionFind uf(n * 7);
    vector<string> s(n);
    for (int i = 0; i < n; i++) {
        cin >> s[i];
        for (int j = 0; j < 7; j++) {
            if (s[i][j] == '1' && s[i][(j + 1) % 7] == '1') {
                uf.unite(j * n + i, ((j + 1) % 7) * n + i);
            }
        }
    }

    vector<vector<int>> graph(n);

    for (int i = 0; i < m; i++) {
        int u, v;
        cin >> u >> v, u--, v--;
        graph[u].push_back(v), graph[v].push_back(u);

        for (int j = 0; j < 7; j++) {
            if (s[u][j] == '1' && s[v][j] == '1') {
                uf.unite(j * n + u, j * n + v);
            }
        }
    }

    for (int i = 0; i < q; i++) {
        int query, x, y;
        cin >> query >> x >> y, x--, y--;
        if (query == 1) {
            s[x][y] = '1';

            for (int j = 0; j < 7; j++) {
                if (s[x][j] == '1' && s[x][(j + 1) % 7] == '1') {
                    uf.unite(j * n + x, ((j + 1) % 7) * n + x);
                }
            }

            for (auto to:graph[x]) {
                for (int j = 0; j < 7; j++) {
                    if (s[x][j] == '1' && s[to][j] == '1') {
                        uf.unite(j * n + x, j * n + to);
                    }
                }
            }
        } else {
            cout << uf.size(x) << "\n";
        }
    }
    cout << flush;
    return 0;
}
0