結果

問題 No.2251 Marking Grid
ユーザー titiatitia
提出日時 2023-03-22 05:54:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,792 ms / 3,000 ms
コード長 981 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 148,160 KB
最終ジャッジ日時 2024-09-18 14:43:57
合計ジャッジ時間 20,621 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 26 ms
10,880 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 27 ms
10,880 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 26 ms
10,752 KB
testcase_12 AC 26 ms
10,880 KB
testcase_13 AC 26 ms
10,880 KB
testcase_14 AC 26 ms
10,880 KB
testcase_15 AC 26 ms
10,880 KB
testcase_16 AC 26 ms
10,752 KB
testcase_17 AC 27 ms
10,752 KB
testcase_18 AC 27 ms
10,752 KB
testcase_19 AC 26 ms
10,880 KB
testcase_20 AC 26 ms
10,752 KB
testcase_21 AC 30 ms
10,752 KB
testcase_22 AC 2,315 ms
126,224 KB
testcase_23 AC 2,742 ms
148,160 KB
testcase_24 AC 96 ms
15,488 KB
testcase_25 AC 2,792 ms
148,068 KB
testcase_26 AC 521 ms
36,752 KB
testcase_27 AC 1,439 ms
85,852 KB
testcase_28 AC 70 ms
14,464 KB
testcase_29 AC 1,570 ms
90,564 KB
testcase_30 AC 429 ms
34,820 KB
testcase_31 AC 288 ms
28,104 KB
testcase_32 AC 108 ms
17,664 KB
testcase_33 AC 1,688 ms
95,316 KB
testcase_34 AC 141 ms
18,560 KB
testcase_35 AC 753 ms
53,940 KB
testcase_36 AC 1,045 ms
65,452 KB
testcase_37 AC 1,442 ms
81,664 KB
testcase_38 AC 74 ms
14,208 KB
testcase_39 AC 55 ms
13,312 KB
testcase_40 AC 672 ms
44,436 KB
testcase_41 AC 309 ms
30,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W=map(int,input().split())
A=[list(map(int,input().split())) for i in range(H)]

mod=998244353
POW2=[1]
for i in range(3000):
    POW2.append(POW2[-1]*2%mod)

# UnionFind

Group = [i for i in range(H+W+1)] # グループ分け
Nodes = [1]*(H+W+1) # 各グループのノードの数

def find(x):
    while Group[x] != x:
        x=Group[x]
    return x

def Union(x,y):
    if find(x) != find(y):
        if Nodes[find(x)] < Nodes[find(y)]:
            
            Nodes[find(y)] += Nodes[find(x)]
            Nodes[find(x)] = 0
            Group[find(x)] = find(y)
            
        else:
            Nodes[find(x)] += Nodes[find(y)]
            Nodes[find(y)] = 0
            Group[find(y)] = find(x)

X=[]
for i in range(H):
    for j in range(W):
        X.append((A[i][j],i,j))

X.sort(reverse=True)

ANS=0
now=H+W-2
for a,i,j in X:
    if find(i)==find(j+H):
        continue
    else:
        ANS=(ANS+a*POW2[now])%mod
        now-=1
        Union(i,j+H)

print(ANS)
0