摘要: 本题我们采用隔板法+容斥原理来解决 合格总方案数 = 总方案书 - 不合理的方案数 = 不考虑limit的方案数 - 不合法方案数(至少有一个小朋友 > limit) 任意方案数 n个小球放到3个盒子中 -> n + 2个位置,选两个位置放隔板剩下位置放球 c(n + 2, 2) 三个小朋友为:甲乙 阅读全文
posted @ 2023-11-12 21:11 深渊之巅 阅读(6) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<cstdio> #include<cstring> #include<algorithm> using namespace std; const int N = 1010; int n, m; int v[N], w[N]; int f[101 阅读全文
posted @ 2023-11-12 20:46 深渊之巅 阅读(25) 评论(0) 推荐(0) 编辑
摘要: class Solution { public: vector<string> findHighAccessEmployees(vector<vector<string>>& access_times) { int n = access_times.size(); vector<string> re 阅读全文
posted @ 2023-11-12 17:38 深渊之巅 阅读(4) 评论(0) 推荐(0) 编辑