2018年2月23日

uva 818(位运算枚举+dfs)

摘要: #include #include #include #include using namespace std; const int maxn=20; int g[maxn][maxn]; int vis[maxn]; int n,cnt; int cacl(int x) { return x==0?0:(cacl(x/2)+(x&1)); } bool two(int x)//... 阅读全文

posted @ 2018-02-23 17:19 发牌员 阅读(130) 评论(0) 推荐(0)

导航