結果

問題 No.2251 Marking Grid
ユーザー sotanishysotanishy
提出日時 2023-03-17 23:08:29
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,151 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 81,836 KB
実行使用メモリ 269,576 KB
最終ジャッジ日時 2024-09-18 12:14:11
合計ジャッジ時間 21,713 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,096 KB
testcase_01 AC 39 ms
52,004 KB
testcase_02 AC 38 ms
52,480 KB
testcase_03 AC 39 ms
52,608 KB
testcase_04 AC 38 ms
52,628 KB
testcase_05 AC 39 ms
52,608 KB
testcase_06 AC 39 ms
52,096 KB
testcase_07 AC 38 ms
52,480 KB
testcase_08 AC 40 ms
52,036 KB
testcase_09 AC 39 ms
52,352 KB
testcase_10 AC 39 ms
52,224 KB
testcase_11 AC 39 ms
52,096 KB
testcase_12 AC 38 ms
52,864 KB
testcase_13 AC 40 ms
52,608 KB
testcase_14 AC 38 ms
52,352 KB
testcase_15 AC 39 ms
52,476 KB
testcase_16 AC 39 ms
52,564 KB
testcase_17 AC 40 ms
52,224 KB
testcase_18 AC 39 ms
52,608 KB
testcase_19 AC 40 ms
52,096 KB
testcase_20 AC 40 ms
52,224 KB
testcase_21 AC 39 ms
52,084 KB
testcase_22 AC 2,054 ms
223,928 KB
testcase_23 AC 2,953 ms
269,576 KB
testcase_24 AC 107 ms
81,836 KB
testcase_25 TLE -
testcase_26 AC 528 ms
117,980 KB
testcase_27 AC 1,337 ms
178,384 KB
testcase_28 AC 100 ms
80,144 KB
testcase_29 AC 1,418 ms
173,968 KB
testcase_30 AC 485 ms
117,148 KB
testcase_31 AC 296 ms
98,072 KB
testcase_32 AC 140 ms
82,904 KB
testcase_33 AC 1,709 ms
186,948 KB
testcase_34 AC 166 ms
88,320 KB
testcase_35 AC 754 ms
130,272 KB
testcase_36 AC 903 ms
140,392 KB
testcase_37 AC 1,354 ms
161,300 KB
testcase_38 AC 103 ms
80,972 KB
testcase_39 AC 84 ms
77,632 KB
testcase_40 AC 654 ms
121,572 KB
testcase_41 AC 319 ms
100,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

class UnionFind:
    def __init__(self, N):
        self.par = [-1] * N

    def find(self, x):
        r = x
        while self.par[r] >= 0:
            r = self.par[r]
        while x != r:
            tmp = self.par[x]
            self.par[x] = r
            x = tmp
        return r

    def unite(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return
        if self.par[x] > self.par[y]:
            x, y = y, x
        self.par[x] += self.par[y]
        self.par[y] = x

    def same(self, x, y):
        return self.find(x) == self.find(y)

    def size(self, x):
        return -self.par[self.find(x)]


mod = 998244353
H, W = map(int, input().split())
A = [list(map(int, input().split())) for _ in range(H)]
vals = []
for i in range(H):
    for j in range(W):
        vals.append((A[i][j], i, j))

vals.sort(key=lambda p: -p[0])
uf = UnionFind(H+W)
comp = H + W
ans = 0

for x, i, j in vals:
    if uf.same(i, H+j):
        continue
    ans = (ans + x * pow(2, comp - 1, mod)) % mod
    uf.unite(i, H+j)
    comp -= 1
print(ans * pow(2, mod-2, mod) % mod)
0