摘要:
http://cache.baiducontent.com/c?m=9d78d513d98214b8599d83080901a7610d13c03d338d96533dc3923b8e790b1f1a33f4bb507351528fd27c105df80f41beae7522604266e7c683 阅读全文
摘要:
蜜汁博弈,然而蒟蒻一枚,只会写二进制拆分的,于是T了。 在看完大佬的博客后好像有所领悟。。 情况1. 每堆石子数量都为1时,堆数为偶数时先手胜,此时Nim和为0 反之,堆数为奇数时先手必败 情况2. 至少有一堆石子数量大于1时, 1)若只有一堆石子数量大于1(此时Nim和!=0),先手可一定可以将局 阅读全文
摘要:
这是比较久以前的题了,复习匈牙利时翻了出来 板子 #include <stdio.h> #include <cstring> using namespace std; struct node { int v,next; }e[10000]; int head[10000],father[10000] 阅读全文
摘要:
这是一道对我而言很玄学的题 先求出最小生成树,然后暴力dfs统计等价值的边的个数,乘法原理. #include <stdio.h> #include <algorithm> #include <cstring> #include <cmath> #include <queue> #include < 阅读全文