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