結果

問題 No.2531 Coloring Vertices on Namori
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-11-04 12:24:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 438 ms / 2,000 ms
コード長 675 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 125,692 KB
最終ジャッジ日時 2024-09-25 21:59:32
合計ジャッジ時間 11,455 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 249 ms
101,632 KB
testcase_06 AC 39 ms
52,096 KB
testcase_07 AC 244 ms
101,632 KB
testcase_08 AC 380 ms
101,376 KB
testcase_09 AC 395 ms
101,888 KB
testcase_10 AC 376 ms
101,376 KB
testcase_11 AC 276 ms
125,560 KB
testcase_12 AC 272 ms
125,692 KB
testcase_13 AC 273 ms
125,560 KB
testcase_14 AC 337 ms
101,888 KB
testcase_15 AC 350 ms
101,376 KB
testcase_16 AC 345 ms
101,504 KB
testcase_17 AC 39 ms
51,968 KB
testcase_18 AC 38 ms
52,096 KB
testcase_19 AC 39 ms
52,224 KB
testcase_20 AC 436 ms
107,136 KB
testcase_21 AC 433 ms
107,136 KB
testcase_22 AC 424 ms
106,880 KB
testcase_23 AC 436 ms
107,136 KB
testcase_24 AC 421 ms
106,880 KB
testcase_25 AC 438 ms
106,496 KB
testcase_26 AC 422 ms
107,136 KB
testcase_27 AC 422 ms
106,880 KB
testcase_28 AC 423 ms
107,520 KB
testcase_29 AC 437 ms
107,520 KB
testcase_30 AC 427 ms
107,136 KB
testcase_31 AC 435 ms
106,752 KB
testcase_32 AC 424 ms
107,264 KB
testcase_33 AC 429 ms
106,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
e = [[] for i in range(n)]
mod = 998244353

count = [0]*n
for _ in range(n):
    u,v = [int(x)-1 for x in input().split()]
    e[u].append(v)
    e[v].append(u)
    count[u] += 1
    count[v] += 1


vis = [0]*n

q = []
for i in range(n):
    if count[i] == 1:
        q.append(i)


while q:
    now = q.pop()
    vis[now] = 1

    for nex in e[now]:
        count[nex] -= 1
        if count[nex] == 1:
            q.append(nex)



assert sum(vis) < n


size = n - sum(vis)
dp = [k,0]

for _ in range(size-1):

    dp = [dp[1],dp[0]*(k-1)+dp[1]*(k-2)]
    dp[0] %= mod
    dp[1] %= mod

ans = dp[1] * pow(k-1,sum(vis),mod)
ans %= mod

print(ans)
0