摘要: 神题。同学指教。1秒AC。。。http://blog.csdn.net/jtjy568805874/article/details/50724656 #include<cstdio> #include<cstring> #include<ctime> #include<algorithm> usin 阅读全文
posted @ 2016-02-24 08:55 Fighting_Heart 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 很简单的博弈题.....算几组能得到规律了。 某个状态先手要赢 等价于 之前有一种状态是后手赢,先手可以保证让现在这个状态到达那个状态 #include<cstdio> #include<cstring> #include<ctime> #include<algorithm> using names 阅读全文
posted @ 2016-02-24 08:53 Fighting_Heart 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 状态压缩。 每一个人所需的物品对应一个数字,统计一个每个数字有几个。每一种提供物品的状态也对应一个数字,然后暴力判断。 #include<cstdio> #include<cstring> #include<algorithm> using namespace std; const int maxn 阅读全文
posted @ 2016-02-24 08:49 Fighting_Heart 阅读(194) 评论(0) 推荐(0) 编辑