栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > C/C++/C#

AT2000 [AGC002F] Leftmost Ball 题解

C/C++/C# 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

AT2000 [AGC002F] Leftmost Ball 题解

AT2000 [AGC002F] Leftmost Ball

AT2000 [AGC002F] Leftmost Ball

感觉转移还是挺难的。 O r z   A K _ S T A R color{white} Orz AK_STAR Orz AK_STAR


我们不妨考虑随便染色,对于一种合法的染色肯定是对于任意前缀和白色的数量都大于等于颜色的数量。

那么我们不妨考虑通过白色来计数,我们不妨钦定每次填一种颜色的时候直接匹配最靠左没有匹配过的白色点。

设 f ( i , j ) f(i, j) f(i,j) 表示填了 i i i 个白色的球,填了 j j j 种颜色。

我们转移考虑枚举当前位置填的是哪种颜色的球。

  • 白色球,直接从 f ( i − 1 , j ) f(i - 1, j) f(i−1,j) 进行转移。

  • 颜色球,首先需要知道是哪个颜色的球 n − j + 1 n - j + 1 n−j+1 还要知道有哪些位置是可以填的 n × K − i − 1 − ( j − 1 ) × ( K − 1 ) n times K - i - 1 - (j - 1) times (K - 1) n×K−i−1−(j−1)×(K−1),之后我们发现已经钦定了一个白球作为颜色的开始,而且当前位置又必须填一个球,所以剩下 K − 2 K - 2 K−2 个球来填。

    那么转移系数就是 ( n − j + 1 ) × ( n × K − i − 1 − ( j − 1 ) × ( K − 1 ) K − 2 ) × f ( i , j − 1 ) (n - j + 1) times dbinom{ntimes K - i - 1 - (j - 1) times (K - 1)}{K - 2} times f(i, j - 1) (n−j+1)×(K−2n×K−i−1−(j−1)×(K−1)​)×f(i,j−1)。


#include 
using namespace std;

//#define Fread
#define Getmod

#ifdef Fread
char buf[1 << 21], *iS, *iT;
#define gc() (iS == iT ? (iT = (iS = buf) + fread (buf, 1, 1 << 21, stdin), (iS == iT ? EOF : *iS ++)) : *iS ++)
#define getchar gc
#endif // Fread

template 
void r1(T &x) {
	x = 0;
	char c(getchar());
	int f(1);
	for(; c < '0' || c > '9'; c = getchar()) if(c == '-') f = -1;
	for(; '0' <= c && c <= '9';c = getchar()) x = (x * 10) + (c ^ 48);
	x *= f;
}

template  inline void r1(T& t, Args&... args) {
    r1(t);  r1(args...);
}

#ifdef Getmod
const int mod  = 1e9 + 7;
template 
struct typemod {
    int z;
    typemod(int a = 0) : z(a) {}
    inline int inc(int a,int b) const {return a += b - mod, a + ((a >> 31) & mod);}
    inline int dec(int a,int b) const {return a -= b, a + ((a >> 31) & mod);}
    inline int mul(int a,int b) const {return 1ll * a * b % mod;}
    typemod operator + (const typemod &x) const {return typemod(inc(z, x.z));}
    typemod operator - (const typemod &x) const {return typemod(dec(z, x.z));}
    typemod operator * (const typemod &x) const {return typemod(mul(z, x.z));}
    typemod& operator += (const typemod &x) {*this = *this + x; return *this;}
    typemod& operator -= (const typemod &x) {*this = *this - x; return *this;}
    typemod& operator *= (const typemod &x) {*this = *this * x; return *this;}
    int operator == (const typemod &x) const {return x.z == z;}
    int operator != (const typemod &x) const {return x.z != z;}
};
typedef typemod Tm;
#endif

//#define int long long
const int maxn = 2e3 + 5;
const int maxm = maxn << 1;

Tm fac[maxn * maxn], inv[maxn * maxn];
Tm ksm(Tm x,int mi) {
    Tm res(1);
    while(mi) {
        if(mi & 1) res *= x;
        mi >>= 1;
        x *= x;
    }
    return res;
}
void init(int x) {
    fac[0] = 1;
    for(int i = 1; i <= x; ++ i) fac[i] = fac[i - 1] * i;
    inv[x] = ksm(fac[x], mod - 2);
    for(int i = x - 1; i >= 0; -- i) inv[i] = inv[i + 1] * (i + 1);
}

int n, K;
Tm C(int a,int b) {
    return a < b ? 0 : fac[a] * inv[b] * inv[a - b];
}
Tm f[maxn][maxn];

signed main() {
    int i, j;
    r1(n, K);
    init(n * K);
    if(K == 1) return puts("1"), 0;
//    printf("%dn", C(2, 2).z);
    f[0][0] = 1;
    for(i = 1; i <= n; ++ i) {
        for(j = 0; j <= i; ++ j) {
            f[i][j] = f[i - 1][j];
            if(j) f[i][j] += f[i][j - 1] * (n - j + 1) * C(n * K - i - 1 - (j - 1) * (K - 1), K - 2);
        }
    }
    printf("%dn", f[n][n].z);
    return 0;
}
转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/317015.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号