当前位置:网站首页>Permutation and combination function
Permutation and combination function
2022-07-06 08:11:00 【. dye】
array
ll A(ll n,ll m)
{ ll co=1; if(m==0){return co;}
for(ll i=m+1;i<=n;i++){
co*=i;
}
return co;
}
Combine
ll C[100][100];
void C(int n)// ceiling
{
for(int i = 0; i <n+1; ++i) {
for(int j = 0; j <= i; ++j) {
if(!j) C[i][j] = 1;
else C[i][j] = (C[i - 1][j] + C[i - 1][j - 1]) % ((ll)(1e9 + 7));
}
}
}
After entering the upper limit
Usage method 15 Choose from 6 individual Namely C[15][6];
边栏推荐
- 使用 TiUP 升级 TiDB
- JS select all and tab bar switching, simple comments
- Tidb backup and recovery introduction
- [nonlinear control theory]9_ A series of lectures on nonlinear control theory
- 1202 character lookup
- Data governance: misunderstanding sorting
- Transformer principle and code elaboration
- Secure captcha (unsafe verification code) of DVWA range
- 649. Dota2 Senate
- Data governance: metadata management
猜你喜欢
matplotlib. Widgets are easy to use
Asia Pacific Financial Media | female pattern ladyvision: forced the hotel to upgrade security. The drunk woman died in the guest room, and the hotel was sentenced not to pay compensation | APEC secur
Wireshark grabs packets to understand its word TCP segment
Learn Arduino with examples
让学指针变得更简单(三)
National economic information center "APEC industry +": economic data released at the night of the Spring Festival | observation of stable strategy industry fund
Nft智能合约发行,盲盒,公开发售技术实战--合约篇
How to use information mechanism to realize process mutual exclusion, process synchronization and precursor relationship
Esrally domestic installation and use pit avoidance Guide - the latest in the whole network
"Friendship and righteousness" of the center for national economy and information technology: China's friendship wine - the "unparalleled loyalty and righteousness" of the solidarity group released th
随机推荐
ESP series pin description diagram summary
Codeforces Global Round 19(A~D)
Introduction to number theory (greatest common divisor, prime sieve, inverse element)
Flash return file download
Migrate data from CSV files to tidb
Transformer principle and code elaboration
Grayscale upgrade tidb operator
MFC 给列表控件发送左键单击、双击、以及右键单击消息
A Closer Look at How Fine-tuning Changes BERT
备份与恢复 CR 介绍
Data governance: 3 characteristics, 4 transcendence and 3 28 principles of master data
[research materials] 2021 Research Report on China's smart medical industry - Download attached
Résumé des diagrammes de description des broches de la série ESP
IP lab, the first weekly recheck
Pangolin Library: control panel, control components, shortcut key settings
Nft智能合约发行,盲盒,公开发售技术实战--拼图篇
Data governance: data quality
Sanzi chess (C language)
Machine learning - decision tree
[untitled]