結果

問題 No.2531 Coloring Vertices on Namori
ユーザー PNJPNJ
提出日時 2023-11-25 02:36:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 441 ms / 2,000 ms
コード長 639 bytes
コンパイル時間 486 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 120,420 KB
最終ジャッジ日時 2024-09-26 10:09:46
合計ジャッジ時間 11,322 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 40 ms
52,224 KB
testcase_05 AC 271 ms
117,500 KB
testcase_06 AC 39 ms
51,840 KB
testcase_07 AC 263 ms
117,504 KB
testcase_08 AC 379 ms
117,504 KB
testcase_09 AC 385 ms
117,468 KB
testcase_10 AC 386 ms
117,752 KB
testcase_11 AC 234 ms
120,292 KB
testcase_12 AC 243 ms
120,292 KB
testcase_13 AC 238 ms
120,420 KB
testcase_14 AC 334 ms
117,504 KB
testcase_15 AC 347 ms
117,632 KB
testcase_16 AC 336 ms
117,376 KB
testcase_17 AC 39 ms
52,352 KB
testcase_18 AC 38 ms
52,224 KB
testcase_19 AC 38 ms
52,096 KB
testcase_20 AC 388 ms
105,216 KB
testcase_21 AC 375 ms
104,976 KB
testcase_22 AC 364 ms
104,592 KB
testcase_23 AC 379 ms
105,472 KB
testcase_24 AC 375 ms
104,780 KB
testcase_25 AC 387 ms
104,704 KB
testcase_26 AC 376 ms
105,464 KB
testcase_27 AC 401 ms
104,800 KB
testcase_28 AC 383 ms
105,720 KB
testcase_29 AC 381 ms
105,096 KB
testcase_30 AC 373 ms
104,812 KB
testcase_31 AC 386 ms
105,856 KB
testcase_32 AC 374 ms
105,228 KB
testcase_33 AC 441 ms
104,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
G = [[] for i in range(N)]
d = [0 for i in range(N)]
mod = 998244353
for i in range(N):
  u,v = map(int,input().split())
  G[u-1].append(v-1)
  G[v-1].append(u-1)
  d[u-1] += 1
  d[v-1] += 1

H = []
for u in range(N):
  if d[u] == 1:
    H.append(u)

c = 0
while len(H):
  u = H.pop()
  for v in G[u]:
    d[v] -= 1
    if d[v] == 1:
      H.append(v)
  c += 1

ans = pow(K-1,c,mod)
r = N - c
dp = [[0,0] for i in range(r)]
dp[0][1] = K
for i in range(r-1):
  dp[i+1][0] += (K-2) * sum(dp[i]) + dp[i][1]
  dp[i+1][0] %= mod
  dp[i+1][1] += dp[i][0]
  dp[i+1][1] %= mod

ans *= dp[-1][0]
ans %= mod
print(ans)
0