結果

問題 No.2531 Coloring Vertices on Namori
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-11-12 04:33:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 669 ms / 2,000 ms
コード長 1,586 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 154,608 KB
最終ジャッジ日時 2024-09-26 03:00:34
合計ジャッジ時間 14,430 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
55,856 KB
testcase_01 AC 48 ms
56,192 KB
testcase_02 AC 47 ms
56,192 KB
testcase_03 AC 47 ms
56,192 KB
testcase_04 AC 48 ms
55,936 KB
testcase_05 AC 224 ms
141,272 KB
testcase_06 AC 50 ms
55,424 KB
testcase_07 AC 235 ms
141,440 KB
testcase_08 AC 349 ms
141,696 KB
testcase_09 AC 348 ms
141,696 KB
testcase_10 AC 346 ms
141,696 KB
testcase_11 AC 285 ms
154,492 KB
testcase_12 AC 284 ms
154,608 KB
testcase_13 AC 287 ms
154,488 KB
testcase_14 AC 314 ms
141,696 KB
testcase_15 AC 315 ms
141,440 KB
testcase_16 AC 310 ms
141,696 KB
testcase_17 AC 51 ms
55,424 KB
testcase_18 AC 51 ms
55,808 KB
testcase_19 AC 53 ms
55,680 KB
testcase_20 AC 608 ms
128,896 KB
testcase_21 AC 629 ms
129,152 KB
testcase_22 AC 625 ms
129,024 KB
testcase_23 AC 666 ms
131,072 KB
testcase_24 AC 634 ms
130,688 KB
testcase_25 AC 579 ms
129,536 KB
testcase_26 AC 598 ms
128,896 KB
testcase_27 AC 667 ms
130,944 KB
testcase_28 AC 621 ms
129,024 KB
testcase_29 AC 658 ms
129,024 KB
testcase_30 AC 628 ms
128,896 KB
testcase_31 AC 646 ms
129,024 KB
testcase_32 AC 669 ms
130,688 KB
testcase_33 AC 601 ms
129,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline
# sys.setrecursionlimit(10**6)

N,K = map(int,input().split())
e = [[] for _ in range(N)]
for _ in range(N):
  u,v = map(int,input().split())
  u -= 1
  v -= 1
  e[u].append(v)
  e[v].append(u)
def namori_decomposition(e):
    
    
    ## cycle,root
    ## root : その頂点が属するcycle上の点を返す
    
    
    n = len(e)
    deg = [len(e[i]) for i in range(n)]
    v = deque()
    for i in range(n):
        if deg[i]==1:
            v.append(i)
            
    cycle = [True]*n
    while v:
        x = v.popleft()
        cycle[x]=False
        for ix in e[x]:
            deg[ix] -= 1
            if deg[ix] == 1:
                v.append(ix)
                
    
    E = [[] for _ in range(n)]
    for i in range(n):
        for j in e[i]:
            if cycle[i]&cycle[j]:
                continue
            E[i].append(j)
            E[j].append(i)
                
    root = [-1]*n
    for i in range(n):
        if cycle[i]:
            v.append(i)
            root[i] = i
            while v:
                x = v.popleft()
                for ix in E[x]:
                    if root[ix]==-1:
                        root[ix] = i
                        v.append(ix)
    return cycle,root

cycle,root = namori_decomposition(e)

n = sum(cycle)
mod = 998244353
C = Counter(root)
ans = (K-1)*(pow(K-1,n-1,mod) - pow(-1,n-1,mod))%mod
#956138134
for v in C.values():
  
  ans *= pow(K-1,v-1,mod)
  ans %= mod
print(ans)
  
0