摘要: Array Transformer UVA - 12003 白书p393 1 #include <bits/stdc++.h> 2 using namespace std; 3 const int maxn = 300010; 4 const int size = 4096; 5 6 int n, 阅读全文
posted @ 2018-01-22 15:55 yijiull 阅读(149) 评论(0) 推荐(0) 编辑
摘要: Census UVA - 11297 二维线段树 lrj 1 #include <bits/stdc++.h> 2 using namespace std; 3 4 const int maxn = 2010; 5 const int inf = 1<<30; 6 7 struct SegTree2 阅读全文
posted @ 2018-01-22 15:32 yijiull 阅读(133) 评论(0) 推荐(0) 编辑
摘要: Sudoku UVALive - 2659 精确覆盖问题 舞蹈链求解数独 1 #include <bits/stdc++.h> 2 using namespace std; 3 4 const int maxn = 1025; 5 const int maxnode = 16385; 6 const 阅读全文
posted @ 2018-01-22 14:06 yijiull 阅读(135) 评论(0) 推荐(0) 编辑