結果

問題 No.2251 Marking Grid
ユーザー shobonvipshobonvip
提出日時 2023-03-17 23:45:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 433 ms / 3,000 ms
コード長 890 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 178,048 KB
最終ジャッジ日時 2024-09-18 12:38:50
合計ジャッジ時間 6,647 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,224 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 39 ms
52,352 KB
testcase_04 AC 39 ms
52,224 KB
testcase_05 AC 39 ms
51,584 KB
testcase_06 AC 39 ms
51,840 KB
testcase_07 AC 39 ms
52,352 KB
testcase_08 AC 38 ms
52,096 KB
testcase_09 AC 37 ms
52,352 KB
testcase_10 AC 39 ms
52,480 KB
testcase_11 AC 39 ms
52,096 KB
testcase_12 AC 38 ms
52,224 KB
testcase_13 AC 39 ms
51,840 KB
testcase_14 AC 39 ms
52,352 KB
testcase_15 AC 39 ms
52,224 KB
testcase_16 AC 40 ms
52,224 KB
testcase_17 AC 39 ms
52,480 KB
testcase_18 AC 38 ms
52,096 KB
testcase_19 AC 39 ms
51,968 KB
testcase_20 AC 39 ms
52,480 KB
testcase_21 AC 39 ms
51,584 KB
testcase_22 AC 375 ms
155,520 KB
testcase_23 AC 428 ms
178,048 KB
testcase_24 AC 65 ms
74,112 KB
testcase_25 AC 433 ms
178,048 KB
testcase_26 AC 155 ms
96,768 KB
testcase_27 AC 271 ms
130,944 KB
testcase_28 AC 77 ms
73,856 KB
testcase_29 AC 291 ms
132,480 KB
testcase_30 AC 140 ms
93,696 KB
testcase_31 AC 114 ms
86,016 KB
testcase_32 AC 88 ms
78,976 KB
testcase_33 AC 330 ms
137,856 KB
testcase_34 AC 99 ms
81,920 KB
testcase_35 AC 201 ms
105,600 KB
testcase_36 AC 235 ms
115,200 KB
testcase_37 AC 292 ms
126,208 KB
testcase_38 AC 79 ms
73,984 KB
testcase_39 AC 74 ms
71,936 KB
testcase_40 AC 192 ms
102,528 KB
testcase_41 AC 125 ms
87,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
	def __init__(self, n):
		self.n = n
		self.parents = [-1] * n
	
	def find(self, 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 = self.find(x)
		y = self.find(y)
		if x == y:
			return
		if self.parents[x] > self.parents[y]:
			x, y = y, x
		self.parents[x] += self.parents[y]
		self.parents[y] = x

mod = 998244353
h,w = map(int,input().split())
a = [list(map(int,input().split())) for i in range(h)]
v = []
for i in range(h):
	for j in range(w):
		v.append((a[i][j] << 30) + (i << 15) + j)
v.sort()

mask = (1 << 15) - 1
uf = UnionFind(w + h)
cnt = w + h - 2
ans = 0

for ty in v[::-1]:
	j = ty & mask
	i = (ty >> 15) & mask
	val = ty >> 30
	if uf.find(j) == uf.find(i+w): continue
	uf.union(j,i+w)
	ans += pow(2, cnt, mod) * val
	ans %= mod
	cnt -= 1

print(ans)
0