結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 42 ms
52,864 KB
testcase_02 AC 243 ms
78,976 KB
testcase_03 AC 117 ms
93,952 KB
testcase_04 AC 162 ms
77,240 KB
testcase_05 AC 161 ms
77,064 KB
testcase_06 AC 149 ms
77,312 KB
testcase_07 AC 129 ms
76,560 KB
testcase_08 AC 129 ms
77,244 KB
testcase_09 AC 139 ms
77,476 KB
testcase_10 AC 115 ms
76,544 KB
testcase_11 AC 125 ms
76,800 KB
testcase_12 AC 139 ms
77,440 KB
testcase_13 AC 106 ms
77,568 KB
testcase_14 AC 178 ms
76,800 KB
testcase_15 AC 145 ms
80,512 KB
testcase_16 AC 168 ms
77,952 KB
testcase_17 AC 124 ms
76,556 KB
testcase_18 AC 118 ms
76,420 KB
testcase_19 AC 121 ms
77,184 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