当前位置:网站首页>HDU 4372:Count the Buildings (Stirling数)
HDU 4372:Count the Buildings (Stirling数)
2022-08-10 11:04:00 【51CTO】
Count the Buildings
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)
Total Submission(s): 1300 Accepted Submission(s): 422
Problem Description
There are N buildings standing in a straight line in the City, numbered from 1 to N. The heights of all the buildings are distinct and between 1 and N. You can see F buildings when you standing in front of the first building and looking forward, and B buildings when you are behind the last building and looking backward. A building can be seen if the building is higher than any building between you and it.
Now, given N, F, B, your task is to figure out how many ways all the buildings can be.
Input
First line of the input is a single integer T (T<=100000), indicating there are T test cases followed.
Next T lines, each line consists of three integer N, F, B, (0<N, F, B<=2000) described above.
Output
For each case, you should output the number of ways mod 1000000007(1e9+7).
Sample Input
Sample Output
2 1
N座高楼,高度均不同且为1~N中的数,从前向后看能看到F个,从后向前看能看到B个,问有多少种可能的排列数。
首先我们知道一个结论:n的环排列的个数与n-1个元素的排列的个数相等,因为P(n,n)/n=(n-1)!。
可以肯定,无论从最左边还是从最右边看,最高的那个楼一定是可以看到的.
假设最高的楼的位置固定,最高楼的编号为n,那么我们为了满足条件,可以在楼n的左边分x-1组,右边分y-1组,且用每
组最高的那个元素代表这一组,那么楼n的左边,从左到右,组与组之间最高的元素一定是单调递增的,且每组中的最高元
素一定排在该组的最左边,每组中的其它元素可以任意排列(相当于这个组中所有元素的环排列)。右边反之亦然。
然后,可以这样考虑这个问题,最高的那个楼左边一定有x-1个组,右边一定有y-1个组,且每组是一个环排列,这就引出
了第一类Stirling数(n个人分成k组,每组内再按特定顺序围圈的分组方法的数目)。
我们可以先把n-1个元素分成x-1+y-1组,然后每组内部做环排列。再在所有组中选取x-1组放到楼n的左边。
所以答案是ans(n, f, b) = C[f + b - 2][f - 1] * S[n - 1][f + b - 2];
AC代码:
边栏推荐
- 快速上手,征服三种不同分布式架构调用方案
- Hangdian Multi-School-Loop-(uncertainty greedy + line segment tree)
- AUTOCAD - reducing spline curve control points, the advanced CAD practice (3)
- SQL优化最强总结 (建议收藏~)
- 1-IMU参数解析以及选择
- Mount [shell][mount -o loop]
- CodeChef STMRRG String Merging (dp)
- 十年架构五年生活-09 五年之约如期而至
- LAXCUS分布式操作系统安全管理
- 蔚来-软件开发工程师一面记录
猜你喜欢
随机推荐
从产品角度看 L2 应用:为什么说这是一个游乐场?
【无标题】
【勇敢饭饭,不怕刷题之链表】链表反转的几种情况
What is affecting MySQL performance?
The brave rice rice, does not fear the brush list of 】 list has a ring
leetcode 823. Binary Trees With Factors(因子二叉树)
接口定义与实现
使用JMeter进行MySQL的压力测试
【TypeScript】接口类型与类型别名:这两者的用法与区别分别是什么?
Memory problems difficult to locate, it is because you do not use ASAN
第3章-线性方程组(3)
使用哈工大LTP测试分词并且增加自定义字典
今天面了个腾讯拿38K出来的大佬,让我见识到了基础的天花板
Codeforces 862 C. Mahmoud and Ehab and the xor (技巧)
Nocalhost - Making development more efficient in the cloud-native era
ISO9001在讲什么?过程方法和风险思维
力扣练习——60 二叉搜索子树的最大键值和
[E-commerce operation] Do you really understand social media marketing (SMM)?
From the product dimension, why can't we fully trust Layer2?
mysql appears: ERROR 1524 (HY000): Plugin '123' is not loaded