摘要: 1478A. Nezzar and Colorful Balls 看半天题,然后才发现是统计最大值。 int _; int main() { ios_base::sync_with_stdio(false), cin.tie(0); for (cin >> _; _--;) { int n; cin 阅读全文
posted @ 2021-01-29 19:58 RioTian 阅读(57) 评论(1) 推荐(0) 编辑
摘要: 递归实现指数型枚举 int _, n, m, k, x, y; vector<int> vec; void calc(int x) { if (x == n + 1) { for (int i = 0; i < vec.size(); ++i) cout << vec[i] << " "; cout 阅读全文
posted @ 2021-01-29 18:34 RioTian 阅读(244) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-01-29 18:31 RioTian 阅读(4) 评论(1) 推荐(0) 编辑