暴力搜索
文章平均质量分 78
MrFox_
1.少说话, 多做事。
2.现在就是将来, 本来现实, 何必幻想!
展开
-
ACM/ICPC 14 北京站现场赛 B
// dfs回溯 + 估价函数 #include #include #include #include #include using namespace std; const int maxn = 5 + 5; int res[maxn][maxn]; int cnt[maxn * maxn]; int n, m, k; int flog; int o原创 2015-09-02 09:39:41 · 452 阅读 · 0 评论 -
HDU 2337
二分+bfs: #include #include #include #include #include #include #include using namespace std; typedef pair PII; #define xx first #define yy second const int maxn = 1000 + 5; const int dx[] = {-1, 0, 1,原创 2015-11-26 09:56:03 · 480 阅读 · 0 评论