結果

問題 No.2291 Union Find Estimate
ユーザー 👑 p-adicp-adic
提出日時 2023-05-10 16:37:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 473 ms / 2,000 ms
コード長 509 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,824 KB
最終ジャッジ日時 2024-05-05 04:08:51
合計ジャッジ時間 3,372 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 473 ms
76,288 KB
testcase_03 AC 100 ms
77,824 KB
testcase_04 AC 124 ms
76,288 KB
testcase_05 AC 128 ms
76,928 KB
testcase_06 AC 104 ms
76,416 KB
testcase_07 AC 90 ms
76,672 KB
testcase_08 AC 95 ms
76,800 KB
testcase_09 AC 98 ms
76,800 KB
testcase_10 AC 129 ms
76,672 KB
testcase_11 AC 134 ms
76,800 KB
testcase_12 AC 172 ms
76,672 KB
testcase_13 AC 76 ms
76,288 KB
testcase_14 AC 138 ms
76,800 KB
testcase_15 AC 121 ms
77,184 KB
testcase_16 AC 122 ms
76,288 KB
testcase_17 AC 76 ms
76,416 KB
testcase_18 AC 77 ms
76,160 KB
testcase_19 AC 106 ms
76,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I,J,R,O=input,int,range,print
X=I().split()
W,H,N,c=J(X[0]),J(X[1]),[str(i) for i in R(10)],1
p,e=[j for j in R(W+10)],W
def r(i):
	m=p[i]
	while i!=m:
		p[i]=i=p[m]
		m=p[i]
	return i
def g(i,j):
	global e
	i,j=r(i),r(j)
	if i>j:i,j=j,i
	if i!=j:p[i],e=j,e-1
for h in R(H):
	Q,D=I(),{}
	for j in R(W):
		q,s=Q[j],1
		if q!='?':
			for n in R(10):
				if q==N[n]:
					g(j,W+n)
					s=0
			if s:
				if q in D:g(D[q],j)
				else:D[q]=j
	for n in R(10):
		if r(W+n)!=W+n:c=0
	O(pow(10,e,998244353) if c else 0)
0