結果
問題 | No.1266 7 Colors |
ユーザー | 👑 Kazun |
提出日時 | 2020-10-23 23:11:19 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,318 ms / 3,000 ms |
コード長 | 2,931 bytes |
コンパイル時間 | 328 ms |
コンパイル使用メモリ | 82,456 KB |
実行使用メモリ | 140,084 KB |
最終ジャッジ日時 | 2024-07-21 12:34:54 |
合計ジャッジ時間 | 19,969 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
53,268 KB |
testcase_01 | AC | 39 ms
54,728 KB |
testcase_02 | AC | 40 ms
53,284 KB |
testcase_03 | AC | 742 ms
95,964 KB |
testcase_04 | AC | 1,225 ms
120,732 KB |
testcase_05 | AC | 808 ms
98,988 KB |
testcase_06 | AC | 1,263 ms
125,548 KB |
testcase_07 | AC | 1,288 ms
131,588 KB |
testcase_08 | AC | 1,209 ms
121,664 KB |
testcase_09 | AC | 1,061 ms
112,248 KB |
testcase_10 | AC | 1,057 ms
108,508 KB |
testcase_11 | AC | 836 ms
98,312 KB |
testcase_12 | AC | 953 ms
103,044 KB |
testcase_13 | AC | 978 ms
104,672 KB |
testcase_14 | AC | 810 ms
97,308 KB |
testcase_15 | AC | 1,318 ms
132,128 KB |
testcase_16 | AC | 1,015 ms
104,220 KB |
testcase_17 | AC | 1,247 ms
130,024 KB |
testcase_18 | AC | 457 ms
140,084 KB |
testcase_19 | AC | 437 ms
129,224 KB |
testcase_20 | AC | 435 ms
130,256 KB |
testcase_21 | AC | 259 ms
88,124 KB |
ソースコード
class Union_Find(): def __init__(self,N): """0,1,...,n-1を要素として初期化する. n:要素数 """ self.n=N self.parents=[-1]*N self.rank=[0]*N def find(self, x): """要素xの属している族を調べる. x:要素 """ if self.parents[x] < 0: return x else: self.parents[x] = self.find(self.parents[x]) return self.parents[x] def union(self, x, y): """要素x,yを同一視する. x,y:要素 """ x = self.find(x) y = self.find(y) if x == y: return if self.rank[x]>self.rank[y]: self.parents[x] += self.parents[y] self.parents[y] = x else: self.parents[y] += self.parents[x] self.parents[x] = y if self.rank[x]==self.rank[y]: self.rank[y]+=1 def size(self, x): """要素xの属している要素の数. x:要素 """ return -self.parents[self.find(x)] def same(self, x, y): """要素x,yは同一視されているか? x,y:要素 """ return self.find(x) == self.find(y) def members(self, x): """要素xが属している族の要素. ※族の要素の個数が欲しいときはsizeを使うこと!! x:要素 """ root = self.find(x) return [i for i in range(self.n) if self.find(i) == root] def roots(self): """族の名前のリスト """ return [i for i, x in enumerate(self.parents) if x < 0] def group_count(self): """族の個数 """ return len(self.roots()) def all_group_members(self): """全ての族の出力 """ return {r: self.members(r) for r in self.roots()} def __str__(self): return '\n'.join('{}: {}'.format(r, self.members(r)) for r in self.roots()) #================================================ import sys imput=sys.stdin.readline N,M,Q=map(int,input().split()) C=7 U=Union_Find(N*C) S=["" for _ in range(N)] for i in range(N): S[i]=list(map(int,input())) for j in range(C): if S[i][j]==S[i][(j+1)%C]==1: U.union(i*C+j,i*C+(j+1)%C) E=[set() for _ in range(N)] for _ in range(M): u,v=map(int,input().split()) u-=1;v-=1 E[u].add(v) E[v].add(u) for j in range(C): if S[u][j]==S[v][j]==1: U.union(u*C+j,v*C+j) X=[] for _ in range(Q): m,x,y=map(int,input().split()) x-=1 y-=1 if m==1: for w in E[x]: if S[w][y]==1: U.union(x*C+y,w*C+y) if S[x][(y-1)%C]==1: U.union(x*C+y,x*C+(y-1)%C) if S[x][(y+1)%C]==1: U.union(x*C+y,x*C+(y+1)%C) S[x][y]=1 else: X.append(U.size(x*C)) print(*X,sep="\n")