結果

問題 No.2291 Union Find Estimate
ユーザー 👑 p-adicp-adic
提出日時 2023-05-10 16:36:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,759 ms / 2,000 ms
コード長 509 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 19,200 KB
最終ジャッジ日時 2024-05-05 04:08:11
合計ジャッジ時間 7,050 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
11,008 KB
testcase_01 AC 25 ms
10,880 KB
testcase_02 AC 1,759 ms
10,880 KB
testcase_03 AC 410 ms
19,200 KB
testcase_04 AC 235 ms
11,008 KB
testcase_05 AC 226 ms
11,008 KB
testcase_06 AC 136 ms
11,008 KB
testcase_07 AC 85 ms
11,008 KB
testcase_08 AC 71 ms
10,880 KB
testcase_09 AC 76 ms
10,880 KB
testcase_10 AC 141 ms
10,880 KB
testcase_11 AC 210 ms
10,880 KB
testcase_12 AC 359 ms
11,008 KB
testcase_13 AC 78 ms
12,544 KB
testcase_14 AC 392 ms
11,008 KB
testcase_15 AC 419 ms
15,104 KB
testcase_16 AC 398 ms
11,392 KB
testcase_17 AC 79 ms
11,392 KB
testcase_18 AC 74 ms
11,264 KB
testcase_19 AC 143 ms
10,880 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