結果

問題 No.2531 Coloring Vertices on Namori
ユーザー sasa8uyauyasasa8uyauya
提出日時 2023-11-04 01:17:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 509 ms / 2,000 ms
コード長 485 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 143,612 KB
最終ジャッジ日時 2024-09-25 21:46:37
合計ジャッジ時間 12,755 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,352 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 38 ms
51,712 KB
testcase_04 AC 40 ms
51,968 KB
testcase_05 AC 249 ms
125,172 KB
testcase_06 AC 39 ms
52,096 KB
testcase_07 AC 252 ms
125,204 KB
testcase_08 AC 420 ms
135,156 KB
testcase_09 AC 421 ms
134,912 KB
testcase_10 AC 419 ms
134,912 KB
testcase_11 AC 272 ms
143,612 KB
testcase_12 AC 272 ms
143,608 KB
testcase_13 AC 285 ms
143,356 KB
testcase_14 AC 349 ms
127,360 KB
testcase_15 AC 366 ms
127,232 KB
testcase_16 AC 360 ms
127,372 KB
testcase_17 AC 39 ms
51,968 KB
testcase_18 AC 38 ms
52,096 KB
testcase_19 AC 39 ms
51,712 KB
testcase_20 AC 488 ms
137,592 KB
testcase_21 AC 496 ms
137,680 KB
testcase_22 AC 499 ms
137,760 KB
testcase_23 AC 495 ms
137,112 KB
testcase_24 AC 509 ms
137,580 KB
testcase_25 AC 489 ms
137,580 KB
testcase_26 AC 490 ms
137,480 KB
testcase_27 AC 482 ms
137,568 KB
testcase_28 AC 490 ms
137,484 KB
testcase_29 AC 506 ms
137,888 KB
testcase_30 AC 495 ms
137,380 KB
testcase_31 AC 491 ms
137,660 KB
testcase_32 AC 502 ms
137,348 KB
testcase_33 AC 497 ms
137,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
M=998244353
e=[[] for i in range(n)]
d=[0]*n
for i in range(n):
  a,b=map(int,input().split())
  a-=1
  b-=1
  e[a]+=[b]
  e[b]+=[a]
  d[a]+=1
  d[b]+=1

v=[d[i]==1 for i in range(n)]
q=[i for i in range(n) if d[i]==1]

for s in q:
  for t in e[s]:
    d[t]-=1
    if d[t]==1 and v[t]==0:
      v[t]=1
      q+=[t]

q1=[0,0]
q2=[0,k]
for i in range(2,n+2):
  q1+=[(q1[i-1]*(k-2)+q2[i-1]*(k-1))%M]
  q2+=[q1[i-1]]

l=n-sum(v)
print(q2[l+1]*pow(k-1,n-l,M)%M)
0