2024年5月22日
摘要: ···代码行数:500 ···博客数:5 ···时间:6小时 ···所学知识:unity跳转场景,状态压缩博弈论dp,万维网知识。 阅读全文
posted @ 2024-05-22 23:34 临江柔 阅读(2) 评论(0) 推荐(0) 编辑
摘要: ​ 思路: 容易发现,我们取走一张牌后: 如果下一步的人必败,则这一步的人必胜,因为可以走这个状态。反之,这个人必败。 代码: #include <bits/stdc++.h> using namespace std; int n, a[21], b[21], f[2000005]; int mai 阅读全文
posted @ 2024-05-22 18:53 临江柔 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 思路:求f(c, d) + f(a, b) - f(a, d) - f(c, b); 代码: int f(int x, int y){ if(y % 2 == 0){ y = y / 2; int ans = y * (x / 4) * 8; x %= 4; if(x == 1){ ans += y 阅读全文
posted @ 2024-05-22 16:43 临江柔 阅读(11) 评论(0) 推荐(0) 编辑