NYUSH_22_陈智谦
NYUSH_22_陈智谦
全部文章
分类
归档
标签
去牛客网
登录
/
注册
NYUSH_22_陈智谦的博客
全部文章
(共2篇)
题解 | 收集纸片
暴力枚举每种方案,复杂度 #include <algorithm> #include <climits> #include <cstdlib> #include <iostream> #include <utility> #include ...
2025-11-17
0
7
题解 | 小红的扫雷游戏
枚举每一种解,检查是否符合条件即可。解最多只有 216=65536 种,检查也只需要检查 16 个格子每个周围至多 9 个格子,效率完全可以接受。 #include <bitset> #include <iostream> #include <array> usi...
2025-11-16
0
8