CTU Open Contest 2019 -A-Beer Barrels

题目描述

finally, you got into the cellar of your preferred brewery where you expected many large piles of beer barrels to be stored. You are eager to inspect the barrels and maybe even their content (a lot and lot of content, actually…). Unfortunately, you find only five barrels, all hopelessly empty and dry. Some numbers are painted on the first four barrels, one number on each of them. A note is attached to the fifth barrel. Behind the barrels in the dark, there is some low and barely discernible door in the wall, leading quite obviously to another lower cellar where you hope a whole slew of full barrels is kept hidden. The door is locked with a heavy and complex looking lock. With no obvious further constructive action in mind, you sit down to study the note on the fifth barrel.
Its essence is the following.
Denote the numbers painted on the first, second, third and fourth barrel by A, B, K and C.
Numbers A, B and C are just single digits.
Now imagine that in the distant future some incredibly powerful computer (powered by quantum yeast) prints a list of all numbers which have exactly K digits and in which each digit is equal to A or B. Another equally mighty computer then takes the list and also the value C as the input and calculates the number of occurrences of digit C in the whole list.
The resulting number taken modulo 1 000 000 007 is to be typed into the door lock to open it and to gain access to the lower cellar.
You decide to calculate that number in your notebook you took with you.

输入

The input consists of a single line with four integers A, B, K, C (1 ≤ A, B, C ≤ 9, 0 ≤ K ≤ 1000)which represent the numbers painted on the first four barrels.

输出

Output a single integer which opens the door lock.

样例输入

1 2 3 2

样例输出

12

这个题目真是让我心凉,不过也值得清醒,让我从迷迷糊糊的状态中清醒过来。
这个题目关键点其实就是怎么求组合数学的C(n, m)
C(n, m) = P(n) / (P(m) * P(n - m))
因为涉及到了大数的相除记得要用逆元,这也是这个题目的收获,学会了逆元
C(n, m) = P(n) * inv(P(m)) * inv(P(n - m))

#include 
using namespace std;

typedef long long ll;
const ll mod = 1e9 + 7;
ll aa[1001];

void zongshu() {
	ll s = 1;
	for (int i = 1; i <= 1000; i++) {
		s = (s % mod * i % mod) % mod;
		aa[i] = s;
	}
}
ll qpow(ll a, ll b, ll q) {
	ll ans = 1 % mod;
	a = a % q;
	while (b)
	{
		if (1 & b) {
			ans = (ans % mod * a % mod) % mod;
		}
		a = (a % mod * a % mod) % mod;
		b >>= 1;
	}
	return ans;
}

int main() {
	aa[0] = 1;
	zongshu();
	ll a, b, c, d;
	cin >> a >> b >> c >> d;
	int sum = 0;
	if (d != a && d != b) {
		cout << "0" << endl;
	}
	else if (a == b) {
		cout << c << endl;
	}
	else
	{
		ll tem;
		for (ll i = 1; i <= c; i++) {
			tem = (i % mod * aa[c] % mod * qpow(aa[i], mod - 2, mod) % mod * qpow(aa[c - i], mod - 2, mod) % mod) % mod;
			sum = (sum % mod + tem % mod) % mod;
		}
		cout << sum << endl;
	}
	return 0;
}

参考博客:
数论基础—逆元

详细题解

你可能感兴趣的:(训练赛,数论)