牛客多校第六场 C Generation I(排列组合)

链接:https://www.nowcoder.com/acm/contest/144/C
来源:牛客网
 

题目描述

Oak is given N empty and non-repeatable sets which are numbered from 1 to N.

Now Oak is going to do N operations. In the i-th operation, he will insert an integer x between 1 and M to every set indexed between i and N.

Oak wonders how many different results he can make after the N operations. Two results are different if and only if there exists a set in one result different from the set with the same index in another result.

Please help Oak calculate the answer. As the answer can be extremely large, output it modulo 998244353.

输入描述:

The input starts with one line containing exactly one integer T which is the number of test cases. (1 ≤ T ≤ 20)

Each test case contains one line with two integers N and M indicating the number of sets and the range of integers. (1 ≤ N ≤ 1018, 1 ≤ M ≤ 1018, )

输出描述:

For each test case, output "Case #x: y" in one line (without quotes), where x is the test case number (starting from 1) and y is the number of different results modulo 998244353.

 

示例1

输入

复制

2
2 2
3 4

输出

复制

Case #1: 4
Case #2: 52

比赛时一看这道题,我想总的情况是m的n次方,然后减掉重复的,就是题目所求的,我就开始找重复的,然后不是少找了就是找多了,还剩最后几分钟的时候我就想是不是思路错了

看了题解,果不其然,正着比较好想,取个m,n的最小值min,从1枚举到min,意思是n个位置放i个不同的数字,有A(m,i)种排列,对于每一种排列,必须确保这i个数字至少出现一次,可以重复出现,这就用到了隔板法,至于求排列组合不能预处理,只能递推着来求,做这种排列组合的题一定要有清晰的分类标准,才能做到不重不漏

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;
const int MAXN = 1000006;
const int MOD = 998244353;
ll inv[MAXN];

int main(void)
{
    int T;
    ll n,m;
    scanf("%d",&T);
    inv[1] = inv[0] = 1;
    for(int i = 2;i < MAXN; i++) inv[i] = (MOD - MOD / i) * inv[MOD % i] % MOD;
    int kase = 0;
    while(T--) {
        kase++;
        scanf("%lld %lld",&n,&m);
        int Min = min(n,m);
        ll ans = 0;
        ll preA = m % MOD;
        ll preC = 1;
        for(int i = 1; i <= Min; i++) {
            ans = (ans + (preA * preC) % MOD) % MOD;
            preA = (preA % MOD * ((m - i) % MOD)) % MOD;
            preC = (preC * ((n - i) % MOD)) % MOD * inv[i] % MOD;
        }
        printf("Case #%d: %lld\n",kase,ans);
    }
    return 0;
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值