結果

問題 No.348 カゴメカゴメ
ユーザー convexineqconvexineq
提出日時 2021-02-01 19:56:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 387 ms / 2,000 ms
コード長 2,428 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 180,636 KB
最終ジャッジ日時 2024-06-29 23:17:30
合計ジャッジ時間 9,926 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 340 ms
108,660 KB
testcase_01 AC 52 ms
66,688 KB
testcase_02 AC 365 ms
180,636 KB
testcase_03 AC 344 ms
101,632 KB
testcase_04 AC 46 ms
64,128 KB
testcase_05 AC 60 ms
69,616 KB
testcase_06 AC 34 ms
52,352 KB
testcase_07 AC 35 ms
52,992 KB
testcase_08 AC 36 ms
52,352 KB
testcase_09 AC 37 ms
53,504 KB
testcase_10 AC 34 ms
53,120 KB
testcase_11 AC 35 ms
52,992 KB
testcase_12 AC 82 ms
77,184 KB
testcase_13 AC 78 ms
77,124 KB
testcase_14 AC 60 ms
70,912 KB
testcase_15 AC 230 ms
127,692 KB
testcase_16 AC 34 ms
52,608 KB
testcase_17 AC 36 ms
52,608 KB
testcase_18 AC 34 ms
52,096 KB
testcase_19 AC 33 ms
52,096 KB
testcase_20 AC 46 ms
63,232 KB
testcase_21 AC 36 ms
53,760 KB
testcase_22 AC 33 ms
52,352 KB
testcase_23 AC 357 ms
105,856 KB
testcase_24 AC 359 ms
105,600 KB
testcase_25 AC 358 ms
105,344 KB
testcase_26 AC 379 ms
104,960 KB
testcase_27 AC 370 ms
104,704 KB
testcase_28 AC 387 ms
105,192 KB
testcase_29 AC 384 ms
105,136 KB
testcase_30 AC 368 ms
105,088 KB
testcase_31 AC 357 ms
105,528 KB
testcase_32 AC 364 ms
105,140 KB
testcase_33 AC 119 ms
78,848 KB
testcase_34 AC 117 ms
78,976 KB
testcase_35 AC 149 ms
78,848 KB
testcase_36 AC 113 ms
78,552 KB
testcase_37 AC 118 ms
78,848 KB
testcase_38 AC 121 ms
79,056 KB
testcase_39 AC 126 ms
78,608 KB
testcase_40 AC 121 ms
78,796 KB
testcase_41 AC 113 ms
79,232 KB
testcase_42 AC 116 ms
79,044 KB
testcase_43 AC 86 ms
76,692 KB
testcase_44 AC 83 ms
76,544 KB
testcase_45 AC 90 ms
76,656 KB
testcase_46 AC 81 ms
76,672 KB
testcase_47 AC 84 ms
76,588 KB
testcase_48 AC 82 ms
77,140 KB
testcase_49 AC 89 ms
76,972 KB
testcase_50 AC 93 ms
76,624 KB
testcase_51 AC 91 ms
76,636 KB
testcase_52 AC 89 ms
76,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    def __init__(self, n):
        self.parent = list(range(n)) #親ノード
        self.size = [1]*n #グループの要素数
 
    def root(self, x): #root(x): xの根ノードを返す.
        while self.parent[x] != x:
            self.parent[x] = self.parent[self.parent[x]]
            x = self.parent[x]
        return x 
 
    def merge(self, x, y): #merge(x,y): xのいる組とyのいる組をまとめる
        x, y = self.root(x), self.root(y)
        if x == y: return False
        if self.size[x] < self.size[y]: x,y=y,x #xの要素数が大きいように
        self.size[x] += self.size[y] #xの要素数を更新
        self.parent[y] = x #yをxにつなぐ
        return True
 
    def issame(self, x, y): #same(x,y): xとyが同じ組ならTrue
        return self.root(x) == self.root(y)
        
    def getsize(self,x): #size(x): xのいるグループの要素数を返す
        return self.size[self.root(x)]

n,m = map(int,input().split())
b = ["."*(m+2)]
for i in range(n):
    b.append("."+input()+".")
b.append("."*(m+2))
n += 2
m += 2
N = n*m
UF = UnionFind(N+1)
for i in range(n):
    for j in range(m):
        if b[i][j] == "x":
            for ni,nj in [(i-1,j-1),(i-1,j),(i-1,j+1),(i,j-1)]:
                if 0 <= ni < n and 0 <= nj < m and b[ni][nj] == "x":
                    UF.merge(i*m+j,ni*m+nj)

def dfs(X):
    q = [X]
    outer = N
    inner = set()
    while q:
        x = q.pop()
        i,j = x//m, x%m
        for ni,nj in [(i-1,j),(i+1,j),(i,j-1),(i,j+1)]:
            nx = ni*m+nj
            if 0 <= ni < n and 0 <= nj < m:
                if b[ni][nj] == ".":
                    if used[nx]==0:
                        used[nx] = 1
                        q.append(nx)
                else:
                    nr = UF.root(nx)
                    if nr in parent:
                        outer = nr
                    else:
                        inner.add(nr)
    for x in inner:
        parent[x] = outer

used = [0]*N
parent = {N:-1}
for i in range(n):
    for j in range(m):
        x = i*m+j
        if used[x]==0 and b[i][j] == ".":
            used[x] = 1
            dfs(x)

P = list(parent.keys())
dpnot = {i:0 for i in P}
dpuse = {i:UF.getsize(i) for i in P}
dpuse[N] = 0
dpuse[-1] = dpnot[-1] = 0
for v in P[::-1]:
    p = parent[v]
    dpuse[p] += dpnot[v]
    dpnot[p] += max(dpuse[v],dpnot[v])

print(max(dpuse[N],dpnot[N]))
0