CF1081C.Colorful Bricks

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

On his free time, Chouti likes doing some housework. He has got one new task, paint some bricks in the yard.

There are nn bricks lined in a row on the ground. Chouti has got mm paint buckets of different colors at hand, so he painted each brick in one of those mm colors.

Having finished painting all bricks, Chouti was satisfied. He stood back and decided to find something fun with these bricks. After some counting, he found there are kk bricks with a color different from the color of the brick on its left (the first brick is not counted, for sure).

So as usual, he needs your help in counting how many ways could he paint the bricks. Two ways of painting bricks are different if there is at least one brick painted in different colors in these two ways. Because the answer might be quite big, you only need to output the number of ways modulo 998244353998\,244\,353 .

输入格式

The first and only line contains three integers nn , mm and kk ( 1n,m2000,0kn11 \leq n,m \leq 2000, 0 \leq k \leq n-1 ) — the number of bricks, the number of colors, and the number of bricks, such that its color differs from the color of brick to the left of it.

输出格式

Print one integer — the number of ways to color bricks modulo 998244353998\,244\,353 .

输入输出样例

  • 输入#1

    3 3 0
    

    输出#1

    3
    
  • 输入#2

    3 2 1
    

    输出#2

    4
    

说明/提示

In the first example, since k=0k=0 , the color of every brick should be the same, so there will be exactly m=3m=3 ways to color the bricks.

In the second example, suppose the two colors in the buckets are yellow and lime, the following image shows all 44 possible colorings.

首页