摘要: 组合数 $C^_$从a个物品里选择b件物品的选法 算法一 暴力枚举: #include <iostream> #include <cstring> using namespace std; int main() { int a, b; cin >> a >> b; for (int i = 1, j 阅读全文
posted @ 2021-04-08 21:37 lhqwd 阅读(89) 评论(0) 推荐(0)