結果

問題 No.1266 7 Colors
ユーザー roarisroaris
提出日時 2020-11-14 14:11:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 976 ms / 3,000 ms
コード長 1,911 bytes
コンパイル時間 398 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 141,440 KB
最終ジャッジ日時 2024-07-22 22:55:18
合計ジャッジ時間 17,616 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 40 ms
52,736 KB
testcase_02 AC 40 ms
52,608 KB
testcase_03 AC 674 ms
91,184 KB
testcase_04 AC 976 ms
121,356 KB
testcase_05 AC 687 ms
93,656 KB
testcase_06 AC 917 ms
125,080 KB
testcase_07 AC 908 ms
131,040 KB
testcase_08 AC 875 ms
120,988 KB
testcase_09 AC 803 ms
110,592 KB
testcase_10 AC 816 ms
107,108 KB
testcase_11 AC 763 ms
96,692 KB
testcase_12 AC 837 ms
101,040 KB
testcase_13 AC 771 ms
102,912 KB
testcase_14 AC 770 ms
94,008 KB
testcase_15 AC 911 ms
132,720 KB
testcase_16 AC 802 ms
100,736 KB
testcase_17 AC 908 ms
129,336 KB
testcase_18 AC 562 ms
141,440 KB
testcase_19 AC 544 ms
134,016 KB
testcase_20 AC 529 ms
133,888 KB
testcase_21 AC 216 ms
80,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

class Unionfind:
    def __init__(self, n):
        self.par = [-1]*n
        self.rank = [1]*n
    
    def root(self, x):
        r = x
        
        while not self.par[r]<0:
            r = self.par[r]
        
        t = x
        
        while t!=r:
            tmp = t
            t = self.par[t]
            self.par[tmp] = r
        
        return r
    
    def unite(self, x, y):
        rx = self.root(x)
        ry = self.root(y)
        
        if rx==ry:
            return
        
        if self.rank[rx]<=self.rank[ry]:
            self.par[ry] += self.par[rx]
            self.par[rx] = ry
            
            if self.rank[rx]==self.rank[ry]:
                self.rank[ry] += 1
        else:
            self.par[rx] += self.par[ry]
            self.par[ry] = rx
    
    def is_same(self, x, y):
        return self.root(x)==self.root(y)
    
    def count(self, x):
        return -self.par[self.root(x)]

N, M, Q = map(int, input().split())
s = [list(input()[:-1]) for _ in range(N)]
uf = Unionfind(7*N)

for i in range(N):
    for j in range(7):
        if s[i][j]=='1' and s[i][(j+1)%7]=='1':
            uf.unite(7*i+j, 7*i+(j+1)%7)

G = [[] for _ in range(N)]

for _ in range(M):
    u, v = map(int, input().split())
    G[u-1].append(v-1)
    G[v-1].append(u-1)
    
    for i in range(7):
        if s[u-1][i]=='1' and s[v-1][i]=='1':
            uf.unite(7*(u-1)+i, 7*(v-1)+i)

for _ in range(Q):
    com = tuple(map(int, input().split()))
    
    if com[0]==1:
        x, y = com[1]-1, com[2]-1
        s[x][y] = '1'
        
        if s[x][(y-1)%7]=='1':
            uf.unite(7*x+(y-1)%7, 7*x+y)
        
        if s[x][(y+1)%7]=='1':
            uf.unite(7*x+(y+1)%7, 7*x+y)
        
        for nx in G[x]:
            if s[nx][y]=='1':
                uf.unite(7*x+y, 7*nx+y)
    else:
        print(uf.count(7*(com[1]-1)))
0