一篇文章讲明白hdu5698百度之星2016round2b第3题

简介: 一篇文章讲明白hdu5698百度之星2016round2b第3题

这题首先是找规律推公式,然后就是组合数学的知识了。

题目是问到第n行第m列的格式有几种方案,我们可以用手算的方法列出当n和m比较小时的所有答案

比如我列出以下88的矩阵

924 462 210 84 28 7 1 0

462 252 126 56 21 6 1 0

210 126 70 35 15 5 1 0

84 56 35 20 10 4 1 0

28 21 15 10 6 3 1 0

7 6 5 4 3 2 1 0

1 1 1 1 1 1 1 0

0 0 0 0 0 0 0 1

矩阵上的数表示从那个位置到最右下角一共有多少种方案。

求每个位置的值也简单,就是把它右下角的所有数加起来即可。

那么,把这个矩阵倒过来看,就是想要的结果矩阵了。

规律也很容易发现,首先,矩阵是对称的,所以我是只考虑m>=n的情况。

然后,可以发现每个位置的数就是一个组合数C(m + n - 4, n - 2)

最后就是求组合数取模了,C(m + n - 4, n - 2) %

然而,多年没做题的我,并不会组合数取模。找了以前的模板,是竹教主写的,看了好半天才明白,等我打完的时候,比赛刚结束。

比赛结束后交了一次,果然a了T_T

以下是代码

/

baidu/win.cpp

Created on: 2016-5-22

Author : ben

/

#include

#include

#include

#include

#include

#include

#include

#include

#include [span style="color: rgba(0, 0, 255, 1)">set

#include

#include

#include [span style="color: rgba(0, 0, 255, 1)">string

#include

#include

#include

#include

#include

#include

using namespace std;

typedef long long LL;

LL Ext_gcd(LL a, LL b, LL x, LL y) {

if (b == 0) {

x = 1, y = 0;

return a;

}//代码效果参考:http://www.ezhiqi.com/zx/art_1460.html

LL ret = Ext_gcd(b, a % b, y, x);

y -= a / b x;

return ret;

}

LL Inv(LL a, int m) { ///求除数a对m的逆元;

LL d, x, y, t = (LL) m;

d = Ext_gcd(a, t, x, y);

if (d == 1)

return (x % t + t) % t;

return -1;

}

void work(int n, int m) {

int i;

const int mod = 1000000007;

LL sum = 1;

for (i = n - m + 1; i <= n; i++) {

sum = (LL) i;

sum %= mod;

}

LL tmp = 1;

for (i = 2; i <= m; i++)

tmp = i, tmp %= mod;

sum = Inv(tmp, mod);

sum %= mod;

printf("%I64d\n", sum);

}

int main() {

int n, m;

while (scanf("%d%d", n, m) == 2) {

if (m [span style="color: rgba(0, 0, 0, 1)"> n) {

int tmp = m;

m = n;

n = tmp;

}//代码效果参考:http://www.ezhiqi.com/zx/art_2396.html

work(m + n - 4, n - 2);

}

return 0;

}

相关文章
|
6月前
|
并行计算
技术经验分享:HDU5371Hotaru'sproblemManacher+尺取法
技术经验分享:HDU5371Hotaru'sproblemManacher+尺取法
|
6月前
|
算法
【牛客周赛Round 27】题目讲解
【牛客周赛Round 27】题目讲解
|
6月前
|
Java
技术经验分享:HDU4813HardCode
技术经验分享:HDU4813HardCode
16 0
|
7月前
|
Java
HDU-1286-找新朋友
HDU-1286-找新朋友
40 0
|
7月前
|
Java 测试技术
HDU-1232-畅通工程(未完待续)
HDU-1232-畅通工程(未完待续)
35 0
|
7月前
|
C++
【PTA】​L1-062 幸运彩票 ​ (C++)
【PTA】​L1-062 幸运彩票 ​ (C++)
106 0
【PTA】​L1-062 幸运彩票 ​ (C++)
PTA 7-2 找奇葩 (20 分)
在一个长度为 n 的正整数序列中,所有的奇数都出现了偶数次,只有一个奇葩奇数出现了奇数次。你的任务就是找出这个奇葩。
114 0
|
Java
hdu 1286 找新朋友
hdu 1286 找新朋友
40 0
ACM刷题之路(十九)二分+尺取 2019暑期集训 HDU6231 K-th Number
ACM刷题之路(十九)二分+尺取 2019暑期集训 HDU6231 K-th Number
ACM刷题之路(二十一)大素数筛选 2019暑期集训 POJ 2689 Prime Distance
ACM刷题之路(二十一)大素数筛选 2019暑期集训 POJ 2689 Prime Distance

热门文章

最新文章