結果

問題 No.1266 7 Colors
ユーザー 👑 NachiaNachia
提出日時 2020-10-23 22:51:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 332 ms / 3,000 ms
コード長 1,544 bytes
コンパイル時間 1,796 ms
コンパイル使用メモリ 172,844 KB
実行使用メモリ 16,260 KB
最終ジャッジ日時 2024-07-21 11:58:40
合計ジャッジ時間 8,436 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,760 KB
testcase_01 AC 4 ms
5,888 KB
testcase_02 AC 3 ms
5,888 KB
testcase_03 AC 252 ms
8,064 KB
testcase_04 AC 306 ms
12,160 KB
testcase_05 AC 249 ms
8,448 KB
testcase_06 AC 311 ms
12,928 KB
testcase_07 AC 325 ms
13,824 KB
testcase_08 AC 309 ms
12,288 KB
testcase_09 AC 298 ms
11,008 KB
testcase_10 AC 295 ms
10,496 KB
testcase_11 AC 255 ms
8,832 KB
testcase_12 AC 273 ms
9,344 KB
testcase_13 AC 277 ms
9,856 KB
testcase_14 AC 255 ms
8,320 KB
testcase_15 AC 332 ms
13,952 KB
testcase_16 AC 268 ms
9,472 KB
testcase_17 AC 327 ms
13,620 KB
testcase_18 AC 283 ms
16,260 KB
testcase_19 AC 184 ms
15,848 KB
testcase_20 AC 179 ms
15,872 KB
testcase_21 AC 232 ms
6,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using LL = long long;
using ULL = unsigned long long;
#define rep(i,n) for(int i=0; i<(n); i++)

struct dsu {
    vector<int> V;
    vector<int> Z;
    dsu(int n) { V.resize(n); Z.assign(n, 1); rep(i, n) V[i] = i; }
    int root(int a) { if (V[a] == a) return a; return V[a] = root(V[a]); }
    void unite(int u, int v) { u = root(u); v = root(v); if (u == v) return; V[u] = v; Z[v] += Z[u]; }
    int size(int a) { return Z[root(a)]; }
};

int N, M, Q;
bool X[100000][7];
vector<int> E[100000];

int main() {
    cin >> N >> M >> Q;
    dsu G(N * 7);
    rep(i, N) rep(x, 7) {
        char c; cin >> c;
        X[i][x] = (c == '1');
    }
    rep(i, N) rep(x, 7) {
        if (X[i][x]) if (X[i][(x + 1) % 7]) G.unite(i * 7 + x, i * 7 + (x + 1) % 7);
    }

    rep(i, M) {
        int u, v; cin >> u >> v; u--; v--;
        rep(x, 7) if (X[u][x]) if (X[v][x]) G.unite(u * 7 + x, v * 7 + x);
        E[u].push_back(v);
        E[v].push_back(u);
    }

    rep(q,Q){
        int c; cin >> c;
        if (c == 1) {
            int x, y; cin >> x >> y; x--; y--;
            X[x][y] = true;
            if (X[x][(y + 1) % 7]) G.unite(x * 7 + y, x * 7 + (y + 1) % 7);
            if (X[x][(y + 6) % 7]) G.unite(x * 7 + y, x * 7 + (y + 6) % 7);
            for (int e : E[x]) {
                if (X[e][y]) G.unite(x * 7 + y, e * 7 + y);
            }
        }
        if (c == 2) {
            int x, z; cin >> x >> z; x--;
            cout << G.size(x * 7) << endl;
        }
    }

    return 0;
}

0