結果

問題 No.1266 7 Colors
ユーザー tanon710tanon710
提出日時 2020-10-24 00:30:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,041 ms / 3,000 ms
コード長 1,718 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 136,772 KB
最終ジャッジ日時 2024-07-21 14:21:56
合計ジャッジ時間 24,417 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,864 KB
testcase_01 AC 40 ms
52,480 KB
testcase_02 AC 37 ms
52,736 KB
testcase_03 AC 941 ms
90,980 KB
testcase_04 AC 1,573 ms
121,640 KB
testcase_05 AC 989 ms
93,576 KB
testcase_06 AC 1,558 ms
128,008 KB
testcase_07 AC 1,954 ms
135,188 KB
testcase_08 AC 1,560 ms
123,004 KB
testcase_09 AC 1,375 ms
112,960 KB
testcase_10 AC 1,368 ms
107,988 KB
testcase_11 AC 992 ms
97,752 KB
testcase_12 AC 1,198 ms
100,980 KB
testcase_13 AC 1,291 ms
103,844 KB
testcase_14 AC 1,056 ms
92,700 KB
testcase_15 AC 2,041 ms
134,428 KB
testcase_16 AC 1,165 ms
101,284 KB
testcase_17 AC 1,549 ms
130,860 KB
testcase_18 AC 649 ms
136,772 KB
testcase_19 AC 514 ms
134,368 KB
testcase_20 AC 515 ms
134,364 KB
testcase_21 AC 410 ms
79,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind():
  def __init__(self,n):
    self.n=n
    self.root=[-1]*(n+1)
    self.rank=[0]*(n+1)
  def FindRoot(self,x):
    if self.root[x]<0:
      return x
    else:
      self.root[x]=self.FindRoot(self.root[x])
      return self.root[x]
  def Unite(self,x,y):
    x=self.FindRoot(x)
    y=self.FindRoot(y)
    if x==y:
      return
    else:
      if self.rank[x]>self.rank[y]:
        self.root[x]+=self.root[y]
        self.root[y]=x
      elif self.rank[x]<=self.rank[y]:
        self.root[y]+=self.root[x]
        self.root[x]=y
        if self.rank[x]==self.rank[y]:
          self.rank[y]+=1
  def isSameGroup(self,x,y):
    return self.FindRoot(x)==self.FindRoot(y)
  def Count(self,x):
    return -self.root[self.FindRoot(x)]
    
n,m,q=map(int,input().split())
colors=[list(input()) for _ in range(n)]
g=[[] for _ in range(n)]
for _ in range(m):
    u,v=map(int,input().split())
    u-=1
    v-=1
    g[u].append(v)
    g[v].append(u)
uf=UnionFind(7*n)
for v in range(n):
    for c in range(7):
        if colors[v][c]=='1' and colors[v][(c+1)%7]=='1':
            uf.Unite(v+c*n,v+((c+1)%7)*n)
for c in range(7):
    for v in range(n):
        for u in g[v]:
            if colors[u][c]=='1' and colors[v][c]=='1':
                uf.Unite(v+n*c,u+n*c)
for _ in range(q):
    f,x,y=map(int,input().split())
    x-=1
    y-=1
    if f==1:
        colors[x][y]='1'
        for c in range(7):
            if colors[x][c]=='1' and colors[x][(c+1)%7]=='1':
                uf.Unite(x+c*n,x+((c+1)%7)*n)
        for c in range(7):
            for u in g[x]:
                if colors[x][c]=='1' and colors[u][c]=='1':
                    uf.Unite(x+n*c,u+n*c)
    elif f==2:
        print(uf.Count(x))
0