zoukankan      html  css  js  c++  java
  • Light OJ 1318 Strange Game 组合数+高速幂+分解因子

    长度为l的用k种字符组成的字符串有k^l中 当中m个字符要不同样 那就是k^l*C(l, m)*(k-1)^m 有反复 要除以2 可是你mod n了 不能直接除 n不一定是素数 所以不能乘以逆元

    所以我都mod 2倍的n 最后的结果再除以2 特判l = 1 和 m = 0的情况

    #include <cstdio>
    #include <cstring>
    #include <cmath>
    using namespace std;
    typedef long long LL;
    int vis[100010];
    int prime[100010], c;
    
    void sieve(int n)
    {
    	int m = sqrt(n+0.5);
    	memset(vis, 0, sizeof(vis));
    	vis[0] = vis[1] = 1;
    	for(int i = 2; i <= m; i++)
    		if(!vis[i])
    			for(int j = i*i; j <= n; j += i)
    				vis[j] = 1;
    }
    
    int get_primes(int n)
    {
    	sieve(n);
    	int c = 0;
    	for(int i = 2; i <= n; i++)
    		if(!vis[i])
    			prime[c++] = i;
    	return c;
    }
    LL pow(LL a, LL b, LL n)
    {
    	LL ans = 1;
    	while(b)
    	{
    		if(b&1)
    		{
    			ans *= a;
    			ans %= n;
    		}
    		b >>= 1;
    		a *= a;
    		a %= n;
    	}
    	return ans;
    }
    LL work(LL x, LL y)
    {
    	LL ans = 0;
    	while(x)
    	{
    		ans += x/y;
    		x /= y;
    	}
    	return ans;
    }
    LL cm(LL n, LL m, LL p)
    {
    	LL ans = 1;
    	for(int i = 0; prime[i] <= n && i < c; i++)
    	{
    		LL x = work(n, prime[i]);
    		LL y = work(n-m, prime[i]);
    		LL z = work(m, prime[i]);
    		x -= y+z;
    		ans *= pow(prime[i], x, p);
    		ans %= p;
    	}
    	return ans;
    }
    LL cal(LL n, LL k, LL l, LL m)
    {
    	LL ans = 1;
    	ans = ans * pow(k, l, n) % n;
    	ans = ans * pow(k-1, m, n) % n;
    	ans = ans * cm(l, m, n) % n;
    	return ans;
    }
    int main()
    {
    	c = get_primes(100000);
    	int T;
    	int cas = 1;
    	scanf("%d", &T);
    	while(T--)
    	{
    		LL n, k, l, m;
    		scanf("%lld %lld %lld %lld", &n, &k, &l, &m);
    		if(m == 0)
    		{
    			printf("Case %d: %lld
    ", cas++, pow(k, l, n)+1);
    		}
    		else if(k == 1)
    			printf("Case %d: 1
    ", cas++);
    		else
    			printf("Case %d: %lld
    ", cas++, cal(2*n, k, l, m)/2+1);
    		
    	}
    	return 0;
    }


  • 相关阅读:
    View转化为bitmap
    Bitmap 与Drawable相互转换
    android studio 连接不到真机
    解决Android sync无法同步问题
    Stetho管理手机
    android sugar no such table
    android 建数据库的正确写法
    android JSON 数据解析
    android notification 理解
    android aidl 简单使用
  • 原文地址:https://www.cnblogs.com/lcchuguo/p/4506524.html
Copyright © 2011-2022 走看看