bzoj2729: [HNOI2012]排隊(高精度+組合數學)
題目傳送門
。
解法:
本來我想的是這樣的。。。
n個男生插老師。
然後插女生。
然後怎麼算都出不來12。。。
%題解。。
原來還有一種叫做女生把老師隔開的東西。
分情況討論:
老師之間有男生。
那麼就是n個男生有n+1個間隔來插老師。
然後一共有n+2個人了。那麼又有n+3個間隔來插女生。
排列組合即可。
老師之間綁一個女生。
那麼這個小團體可以看作一個男生因為他兩邊隨便放什麼人都行。
這個團體有2*m種可能。
然後一共n+1個男生。
還剩m-1個女生。
此時剩下n+2個間隔。
又是排列組合。
程式碼實現:
#include<cstdio>
#include<cstring>
#include<cstdlib>
#include<iostream>
#include<algorithm>
#include<queue>
#include<cmath>
using namespace std;
typedef long long ll;
struct node {
int len;ll a[2100];
node() {len=0;memset(a,0,sizeof(a));}
}per;const ll mod=1000000000;
node chengfa(node n1,ll x) {
node no;no.len=n1.len;
for(int i=1;i<=no.len;i++)no.a[i]=n1.a[i]*x;
for(int i=1;i<=no.len;i++) {no.a[i+1]+=no.a[i]/mod;no.a[i]%=mod;}
int i=no.len;
while(no.a[i+1]>0) {
i++;no.a[i+1]+=no.a[i]/mod;no.a[i]%=mod;
}no.len=i;return no;
}
node jiafa(node n1,node n2) {
node no;no.len=max(n1.len,n2.len);
for(int i=1;i<=no.len;i++)no.a[i]=n1.a[i]+n2.a[i];
for(int i=1;i<=no.len;i++) {no.a[i+1]+=no.a[i]/mod;no.a[i]%=mod;}
int i=no.len;
while(no.a[i+1]>0) {
i++;no.a[i+1]+=no.a[i]/mod;no.a[i]%=mod;
}no.len=i;return no;
}
int main() {
int n,m;scanf("%d%d",&n,&m);per.len=1;per.a[1]=1ll;node ans1,ans2;
if(n+3<m){printf("0\n");return 0;}
ans1=per;for(int i=1;i<=2;i++)ans1=chengfa(ans1,ll(n-i+2));
for(int i=1;i<=m;i++)ans1=chengfa(ans1,ll(n+4-i));
for(int i=1;i<=n;i++)ans1=chengfa(ans1,ll(i));
ans2=per;ans2=chengfa(ans2,ll(2));ans2=chengfa(ans2,ll(m));
for(int i=1;i<m;i++)ans2=chengfa(ans2,ll(n+3-i));
for(int i=1;i<=n+1;i++)ans2=chengfa(ans2,ll(i));
node ans=jiafa(ans1,ans2);
for(int i=ans.len;i>=1;i--)printf("%lld",ans.a[i]);printf("\n");
return 0;
}
相關文章
- 【ACM組合數學 | 錯排公式】寫信ACM公式
- 【數學】組合數學 - 排列組合
- HDU 2068 RPG的錯排 (錯排+組合數)
- 數學-高精度
- 組合數學
- 《小 學 組 合 數 學》
- 【數學】組合數學 - 卡特蘭數
- 組合數學筆記-排列與組合筆記
- 【組合數學】組合數學簡介 ( 組合思想 2 : 數學歸納法 | 數學歸納法推廣 | 多重歸納思想 )
- 高精度數學運算
- 組合數學學習筆記筆記
- 【學習筆記】組合數學筆記
- 組合數學 XKerror 筆記Error筆記
- 2024.4.6 組合數學補題
- 不學無數——組合模式模式
- 【POJ 2249】 Binomial Showdown 組合數學 排列組合計算
- 【演算法學習】組合數學演算法
- 組合數學筆記-特殊計數數列筆記
- 組合數學水題 $19$ 道
- 組合數學與一元n次方
- P3974 [TJOI2015]組合數學
- XYD 排隊
- 火柴排隊
- 15.7 冪級數在組合數學中的應用
- 組隊打卡學習csappAPP
- 組隊刷LeetCode - 兩數之和LeetCode
- 楊輝三角(組合數)+排列組合
- 組合數字首和
- lg組合計數
- 組合數問題
- CodeForces571A. Lengthening Sticks(組合數學-容斥)
- 演算法學習筆記(16): 組合數學基礎演算法筆記
- OI中組合數學公式和定理90%殲滅公式
- 【組合數學】幻方、拉丁方、塗色問題
- P7044-[MCOI-03]括號【組合數學】
- 高精度整數的乘法
- 20240820:組合計數(2)
- 組合數的逆元求法