結果

問題 No.2291 Union Find Estimate
ユーザー 👑 p-adicp-adic
提出日時 2023-05-10 16:49:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 460 ms / 2,000 ms
コード長 500 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 77,952 KB
最終ジャッジ日時 2024-05-05 04:13:52
合計ジャッジ時間 3,438 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,712 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 460 ms
76,416 KB
testcase_03 AC 98 ms
77,952 KB
testcase_04 AC 120 ms
76,032 KB
testcase_05 AC 131 ms
76,928 KB
testcase_06 AC 111 ms
76,416 KB
testcase_07 AC 92 ms
76,416 KB
testcase_08 AC 94 ms
76,672 KB
testcase_09 AC 93 ms
76,544 KB
testcase_10 AC 116 ms
76,672 KB
testcase_11 AC 148 ms
77,184 KB
testcase_12 AC 183 ms
76,800 KB
testcase_13 AC 75 ms
76,160 KB
testcase_14 AC 133 ms
76,544 KB
testcase_15 AC 117 ms
76,928 KB
testcase_16 AC 117 ms
76,416 KB
testcase_17 AC 75 ms
75,904 KB
testcase_18 AC 77 ms
76,032 KB
testcase_19 AC 106 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I,J,R,O=input,int,range,print
X,T=I().split(),R(10)
W,H,N,c=J(X[0]),J(X[1]),[str(i) for i in T],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 T:
				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 T:c*=(r(W+n)==W+n)
	O(pow(10,e,998244353) if c else 0)
0