結果

問題 No.2291 Union Find Estimate
ユーザー titiatitia
提出日時 2023-05-06 01:51:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 245 ms / 2,000 ms
コード長 1,992 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 94,080 KB
最終ジャッジ日時 2024-11-23 14:10:19
合計ジャッジ時間 3,775 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,096 KB
testcase_01 AC 43 ms
52,736 KB
testcase_02 AC 245 ms
78,848 KB
testcase_03 AC 112 ms
94,080 KB
testcase_04 AC 165 ms
77,500 KB
testcase_05 AC 166 ms
77,060 KB
testcase_06 AC 154 ms
77,316 KB
testcase_07 AC 127 ms
76,348 KB
testcase_08 AC 129 ms
77,636 KB
testcase_09 AC 142 ms
77,480 KB
testcase_10 AC 117 ms
76,672 KB
testcase_11 AC 127 ms
76,800 KB
testcase_12 AC 142 ms
77,184 KB
testcase_13 AC 109 ms
77,056 KB
testcase_14 AC 181 ms
76,800 KB
testcase_15 AC 146 ms
80,384 KB
testcase_16 AC 170 ms
77,824 KB
testcase_17 AC 120 ms
76,436 KB
testcase_18 AC 119 ms
76,396 KB
testcase_19 AC 123 ms
76,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,Q=map(int,input().split())
mod=998244353

# UnionFind

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

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)

ANS=[-1]*N
zeroflag=0

for tests in range(Q):
    S=input().strip()

    LIST=[[] for i in range(26)]

    for j in range(len(S)):
        if 97<=ord(S[j])<=122:
            LIST[ord(S[j])-97].append(j)

        if 48<=ord(S[j])<=57:
            if ANS[find(j)]!=-1 and ANS[find(j)]!=int(S[j]):
                zeroflag=1
            ANS[j]=int(S[j])
            ANS[find(j)]=int(S[j])

    #print(zeroflag,ANS,"!")


    for j in range(26):
        if LIST[j]!=[]:

            now=-1

            for x in LIST[j]:
                if ANS[x]!=-1:
                    now=ANS[x]
            #print("?",x,now)

            for l in LIST[j]:
                if l!=x and now!=-1 and ANS[find(l)]!=-1 and ANS[find(l)]!=now:
                    zeroflag=1
                else:
                    Union(x,l)
                    if now!=-1:
                        ANS[find(l)]=now

    for j in range(len(S)):
        if 48<=ord(S[j])<=57:
            if ANS[find(j)]!=-1 and ANS[find(j)]!=int(S[j]):
                zeroflag=1
            ANS[j]=int(S[j])
            ANS[find(j)]=int(S[j])


    #print([find(j) for j in range(N)],LIST,ANS,zeroflag)

    if zeroflag==1:
        print(0)
    else:
        score=0
        for j in range(N):
            if find(j)==j and ANS[j]==-1:
                score+=1

        print(pow(10,score,mod))
            
        
    
0