結果

問題 No.2531 Coloring Vertices on Namori
ユーザー timitimi
提出日時 2024-02-13 15:52:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 392 ms / 2,000 ms
コード長 648 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 129,248 KB
最終ジャッジ日時 2024-09-28 18:30:37
合計ジャッジ時間 10,982 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,612 KB
testcase_01 AC 35 ms
54,264 KB
testcase_02 AC 34 ms
55,192 KB
testcase_03 AC 38 ms
54,452 KB
testcase_04 AC 33 ms
54,780 KB
testcase_05 AC 208 ms
128,732 KB
testcase_06 AC 38 ms
54,852 KB
testcase_07 AC 204 ms
128,708 KB
testcase_08 AC 307 ms
129,248 KB
testcase_09 AC 291 ms
129,168 KB
testcase_10 AC 297 ms
129,172 KB
testcase_11 AC 195 ms
107,504 KB
testcase_12 AC 197 ms
107,504 KB
testcase_13 AC 201 ms
107,124 KB
testcase_14 AC 259 ms
128,504 KB
testcase_15 AC 261 ms
128,508 KB
testcase_16 AC 264 ms
128,548 KB
testcase_17 AC 36 ms
55,316 KB
testcase_18 AC 36 ms
53,932 KB
testcase_19 AC 34 ms
54,208 KB
testcase_20 AC 336 ms
103,228 KB
testcase_21 AC 341 ms
103,200 KB
testcase_22 AC 333 ms
102,988 KB
testcase_23 AC 382 ms
103,184 KB
testcase_24 AC 392 ms
103,056 KB
testcase_25 AC 336 ms
103,276 KB
testcase_26 AC 329 ms
103,300 KB
testcase_27 AC 351 ms
103,128 KB
testcase_28 AC 335 ms
102,976 KB
testcase_29 AC 342 ms
103,468 KB
testcase_30 AC 363 ms
103,096 KB
testcase_31 AC 337 ms
102,972 KB
testcase_32 AC 340 ms
103,284 KB
testcase_33 AC 350 ms
102,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int, input().split())
D=[[] for i in range(N)]
E=[0]*N
for i in range(N):
  u,v=map(int, input().split())
  u-=1;v-=1
  D[u].append(v);D[v].append(u)
  E[u]+=1;E[v]+=1

from collections import deque
d=deque();V=[-1]*N
for i in range(N):
  if E[i]==1:
    d.append(i)
    V[i]=1

while d:
  now=d.popleft()
  E[now]-=1
  for nex in D[now]:
    if V[nex]==-1:
      E[nex]-=1
      if E[nex]==1:
        V[nex]=0
        d.append(nex)

mod=998244353
e=sum(E)//2
dp1=[1];dp2=[0]
for i in range(e-1):
  p,q=dp1[-1],dp2[-1]
  dp1.append(q)
  c=p*(K-1)+q*(K-2)
  dp2.append(c%mod)
ans=dp2[-1]*K
ans%=mod 
ans*=pow(K-1,N-e,mod)
ans%=mod
print(ans)
0