HDU 5046 Airport(dlx)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5046
题意:n个城市修建m个机场,使得每个城市到最近进场的最大值最小。
思路:二分+dlx搜索判定。
#include <iostream> #include <map> #include <string> #include <stdio.h> #include <vector> #include <set> #include <algorithm> #include <string.h> #include <fstream> #include <tchar.h> #include <sstream> using namespace std; ]; int KK; int m; class CDancingLinks { protected: struct DancingLinksNode { DancingLinksNode* left; DancingLinksNode* right; DancingLinksNode* down; DancingLinksNode* up; int col; int row; }; typedef DancingLinksNode Node; int *m_columnEleNumbers; int m_colNumber; int m_rowNumber; Node* m_pool; Node** m_head; int m_curUsePoolIndex; void _Remove(Node* cur) { --m_columnEleNumbers[cur->col]; for(Node* p=cur->down;p!=cur;p=p->down) { p->left->right=p->right; p->right->left=p->left; } } void _Resume(Node* cur) { ++m_columnEleNumbers[cur->col]; for(Node* p=cur->up;p!=cur;p=p->up) { p->left->right=p; p->right->left=p; } } int astar() { Node* p=_GetNode(); ++KK; ; for(Node* q=p->left;q!=p;q=q->left) if(KK!=visit[q->col]) { visit[q->col]=KK; ++ans; for(Node* r=q->up;r!=q;r=r->up) for(Node* t=r->left;t!=r;t=t->left) { visit[t->col]=KK; } } return ans; } bool _SearchSolution(const int depth,std::vector<int> &solution) { Node* p=_GetNode(); if(p->left==p) return true; if(depth+astar()>m) return false; ; ; for(Node* q=p->left;q!=p;q=q->left) { if(m_columnEleNumbers[q->col]<Min) { Min=m_columnEleNumbers[q->col]; MinColumnIndex=q->col; } } for(Node* q=_GetNode(MinColumnIndex)->down;q!=_GetNode(MinColumnIndex);q=q->down) { _Remove(q); solution.push_back(q->row); for(Node* rr=q->right;rr!=q;rr=rr->right) _Remove(rr); ,solution)) return true; for(Node* rr=q->left;rr!=q;rr=rr->left) _Resume(rr); solution.pop_back(); _Resume(q); } return false; } Node* _GetNode(int id) { return m_pool+id; } void _ReleaseMemory() { if(m_columnEleNumbers) { delete[] m_columnEleNumbers; m_columnEleNumbers=nullptr; } if(m_pool) { delete[] m_pool; m_pool=nullptr; } if(m_head) { delete[] m_head; m_head=nullptr; } } public: CDancingLinks():m_colNumber(-),m_rowNumber(-), m_columnEleNumbers(nullptr),m_pool(nullptr),m_head(nullptr) {} /*** 列下标为[1,Column] ***/ CDancingLinks(const int Column,const int Row): m_columnEleNumbers(nullptr),m_pool(nullptr),m_head(nullptr) { SetSize(Column,Row); } /*** 列下标为[1,Column] ***/ void SetSize(const int Column,const int Row) { m_colNumber=Column; m_rowNumber=Row; _ReleaseMemory(); m_columnEleNumbers=]; m_pool=)+]; m_head=]; Clear(); } void Clear() { ;i<=m_colNumber;++i) { Node* cur=_GetNode(i); cur->left=((i==m_colNumber)?_GetNode():_GetNode(i+)); cur->right=((==i)?_GetNode(m_colNumber):_GetNode(i-)); m_columnEleNumbers[i]=; cur->up=cur->down=_GetNode(i); cur->col=i; cur->row=; } ;i<=m_rowNumber;++i) m_head[i]=NULL; m_curUsePoolIndex=m_colNumber+; } ~CDancingLinks() { _ReleaseMemory(); } void AddElement(const int row,const int col) { Node* cur=m_pool+(m_curUsePoolIndex++); cur->up=_GetNode(col); cur->down=_GetNode(col)->down; m_pool[col].down->up=cur; m_pool[col].down=cur; if(m_head[row]==NULL) { m_head[row]=cur->left=cur->right=cur; } else { cur->left=m_head[row]->left; cur->right=m_head[row]; m_head[row]->left->right=cur; m_head[row]->left=cur; } ++m_columnEleNumbers[col]; cur->col=col; cur->row=row; } bool GetSolution(std::vector<int> &Solution) { ,Solution); } }; ][]; ][]; int n; ]; CDancingLinks A; inline long long dist(int i,int j) { ]-a[j][]))+abs(a[i][]-a[j][]); } int ok(long long M) { A.Clear(); ;i<=n;i++) ;j<=n;j++) if(dis[i][j]<=M) { A.AddElement(i,j); } vector<int> ans; return A.GetSolution(ans); } long long cal() { A.SetSize(n,n); ; int i,j; ;i<=n;i++) ;j<=n;j++) dis[i][j]=dist(i,j),d[num++]=dis[i][j]; sort(d,d+num); int M=unique(d,d+num)-d; ,high=M-; long long ans=d[high]; while(low<=high) { ; ; ; } return ans; } int main() { int T; scanf("%d",&T); ;i<=T;++i) { scanf("%d%d",&n,&m); ;j<=n;++j) scanf(],&a[j][]); printf("Case #%d: %I64d\n",i,cal()); } }
HDU 5046 Airport(dlx)的更多相关文章
- HDU 5046 Airport(DLX反复覆盖)
HDU 5046 Airport 题目链接 题意:给定一些机场.要求选出K个机场,使得其它机场到其它机场的最大值最小 思路:二分+DLX反复覆盖去推断就可以 代码: #include <cstd ...
- HDU 5046 Airport【DLX重复覆盖】
题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=5046 题意: 给定n个城市的坐标,要在城市中建k个飞机场,使城市距离最近的飞机场的最长距离最小,求这 ...
- (中等) HDU 5046 Airport ,DLX+可重复覆盖+二分。
Description The country of jiuye composed by N cites. Each city can be viewed as a point in a two- d ...
- hdu 5046 二分+DLX模板
http://acm.hdu.edu.cn/showproblem.php?pid=5046 n城市建k机场使得,是每个城市最近机场的距离的最大值最小化 二分+DLX 模板题 #include < ...
- HDU 5046 Airport ( Dancing Links 反复覆盖 )
今年上海网络赛的一道题目 , 跟 HDU 2295 如出一辙 . 就是距离的计算一个是欧几里得距离 , 一个是曼哈顿距离 学完DLX感觉这题好水 ,就是一个裸的反复覆盖 注意下别溢出即可了 #incl ...
- hdu 5046 Airport 二分+重复覆盖
题目链接 给n个点, 定义两点之间距离为|x1-x2|+|y1-y2|. 然后要选出k个城市建机场, 每个机场可以覆盖一个半径的距离. 求在选出点数不大于k的情况下, 这个半径距离的最大值. 二分半径 ...
- HDU 3335 Divisibility (DLX)
Divisibility Time Limit:1000MS Memory Limit:32768KB 64bit IO Format:%I64d & %I64u Submit ...
- 【HDOJ】5046 Airport
DLX简单题目. /* 5046 */ #include <iostream> #include <string> #include <map> #include ...
- HDU 2295.Radar (DLX重复覆盖)
2分答案+DLX判断可行 不使用的估计函数的可重复覆盖的搜索树将十分庞大 #include <iostream> #include <cstring> #include < ...
随机推荐
- fnd_profile.value('AFLOG_ENABLED')的取值 和配置文件相关SQL
SELECT * FROM FND_PROFILE_OPTIONS_VL TT WHERE TT.PROFILE_OPTION_NAME LIKE '%AFLOG%' FND:启用调试日志 详细的参考 ...
- session讲解(一)——登录网页练习
第一:登陆网页的表单页面login.php <body> <h1>登陆</h1> <form action="loginchuli.php" ...
- 【Ah20160703】咏叹 By C_SUNSHINE
咏叹 By C_SUNSHINE [试题描述] Salroey拿到了一个1~n的排列A,她想对这个排列进行冒泡排序: counter=0 While A不是升序的 counter=counter+1 ...
- java类的访问权限
1.解析 Java有四种访问权限, 其中三种有访问权限修饰符,分别为private,public和protected,还有一种不带任何修饰符. private: Java语言中对访问权限限制的最窄的修 ...
- js编写规范
JavaScript编码规范 Bug----33条 1. 不要使用’==’和’!=’,使用’===’和’!==’替代 等级:Major 原因:==和!=在判断值相等前会判断类型是否相等.这容易因为类型 ...
- 一小时学会Markdown写作
写作也是创作一件产品.以易懂.简洁.凝练的方式表达观点.阐述见解和知识,发挥影响力. 为什么要使用 Markdown 博文迁移的排版兼容.当在多个博客之间,或者在线博客与本地笔记软件之间迁移的时候,排 ...
- ch2-4:遇到嵌套列表进行缩进打印
1.增加一个参数来控制缩进打印:level '''这是一个模块,可以打印列表,其中可能包含嵌套列表''' def print_list(the_list,level): ""&qu ...
- Intel+Ardruino 101
为了传说中的那啥, 啊, 嗯.. #include <CurieBLE.h>const int ledPin = 13; // set ledPin to on-board LED LE ...
- java 调用grads 自动批量生成图片
将 -lbcx 命令 后面的4个参数(gs文件名.参数1.参数2.参数3) 放在单引号里面就可以执行了.
- Java常用jar包用途
Java常用jar包用途: USAGE INDEX JAR NAME USAGE 1 ASM asm-2.2.3.jar ASM字节码库 2 ASM asm-commons-2.2.3.jar ASM ...