結果

問題 No.2291 Union Find Estimate
ユーザー ntudantuda
提出日時 2023-05-06 18:29:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 534 ms / 2,000 ms
コード長 1,629 bytes
コンパイル時間 956 ms
コンパイル使用メモリ 82,860 KB
実行使用メモリ 82,432 KB
最終ジャッジ日時 2024-05-03 03:55:02
合計ジャッジ時間 3,971 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,272 KB
testcase_01 AC 45 ms
53,888 KB
testcase_02 AC 534 ms
77,312 KB
testcase_03 AC 74 ms
82,432 KB
testcase_04 AC 49 ms
60,032 KB
testcase_05 AC 46 ms
54,656 KB
testcase_06 AC 45 ms
55,040 KB
testcase_07 AC 47 ms
54,272 KB
testcase_08 AC 68 ms
69,760 KB
testcase_09 AC 66 ms
69,376 KB
testcase_10 AC 170 ms
78,140 KB
testcase_11 AC 192 ms
77,440 KB
testcase_12 AC 264 ms
77,600 KB
testcase_13 AC 87 ms
76,928 KB
testcase_14 AC 108 ms
77,016 KB
testcase_15 AC 100 ms
79,700 KB
testcase_16 AC 109 ms
76,616 KB
testcase_17 AC 96 ms
76,744 KB
testcase_18 AC 103 ms
76,672 KB
testcase_19 AC 136 ms
77,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
W,H = map(int,input().split())
P = [-1] * W

def root(x):
    if P[x] < 0: return x
    P[x] = root(P[x])  # 経路圧縮
    return P[x]

def unite(x,y):
    x = root(x)
    y = root(y)
    if x == y: return
    if x > y: x,y = y,x
    P[x] += P[y]
    P[y] = x
    if y in code and x not in code:
        code[x] = code[y]
        code.pop(y)
    elif x in code and y in code:
        if code[x] == code[y]:
            code.pop(y)
        else:
            return False
    return True

def same(x,y):
    return root(x) == root(y)

from collections import defaultdict

code = {}
flag = 1

for h in range(H):
    if flag == 0:
        print(0)
        continue
    S = input()
    dic = defaultdict(list)
    for i in range(W):
        ri = root(i)
        s = S[i]
        x = ord(s)
        if 48 <= x <= 57:
            x -= 48
            if ri in code:
                if code[ri] != x:
                    flag = 0
                    print(0)
                    break
            else:
                code[ri] = x
        if 97 <= x <= 122:
            dic[s].append(i)

    #print(i,P,code,flag)


    if flag == 1:
        for _,V in dic.items():
            if len(V) > 1:
                v0 = V[0]
                for v in V[1:]:
                    if unite(v0,v) == False:
                        flag = 0
                        print(0)
                        break
            if flag == 0:
                break

    if flag == 1:
        cnt = 0
        ans = 1
        for i in range(W):
            if P[i] < 0 and i not in code:
                cnt += 1
        print(pow(10,cnt,MOD))

0