首页 > 代码库 > poj 1838
poj 1838
F - Banana
Time Limit:1000MS Memory Limit:30000KB 64bit IO Format:%I64d & %I64uDescription
Consider a tropical forrest, represented as a matrix. The cell from the right top corner of the matrix has the coordinates (1,1), and the coordinates of the other cells are determinated by the row and the column on which the cell is. In some cells of the matrix are placed banana trees; a cell can contain no more than a banana tree. More banana trees which are neighbours on horizontal or vertical form a region of banana trees. In this kind of region, monkey CEKILI is moving easily, with her well-known agility, from a banana tree to another.
CEKILI is eager and the bananas from a single region are not enough for her. Tarzan wants to help his friend. For that, he may connect exactly k banana tree regions knoting more lianas and so CEKILI could move from a region to another using lianas. Obviously, Tarzan must choose the regions so that the total number of banana trees from those k regions must be maximum.
Detemine maximum number of banana trees which Tarzan can obtain connecting exactly k regions.
CEKILI is eager and the bananas from a single region are not enough for her. Tarzan wants to help his friend. For that, he may connect exactly k banana tree regions knoting more lianas and so CEKILI could move from a region to another using lianas. Obviously, Tarzan must choose the regions so that the total number of banana trees from those k regions must be maximum.
Detemine maximum number of banana trees which Tarzan can obtain connecting exactly k regions.
Input
The input has the following structure:
Nr K
x(1) y(1)
y(2) y(2)
...
x(Nr) y(Nr)
Nr is the number of banana trees. K is the number of zones which can be connected. x(i) is the row of the i-th banana tree, while y(i) is the column of the i-th banana tree.
There are Constraints:
• 1 <= Nr <= 16000;
• 1 <= x(i), y(i) <= 10000;
• In the tests used for grading k will never be bigger than the number of regions;
• Two positions are horizontally neighbours if they are on the same row and consecutive columns, respectively vertically neighbours if they are on the same column and on consecutive rows.
Nr K
x(1) y(1)
y(2) y(2)
...
x(Nr) y(Nr)
Nr is the number of banana trees. K is the number of zones which can be connected. x(i) is the row of the i-th banana tree, while y(i) is the column of the i-th banana tree.
There are Constraints:
• 1 <= Nr <= 16000;
• 1 <= x(i), y(i) <= 10000;
• In the tests used for grading k will never be bigger than the number of regions;
• Two positions are horizontally neighbours if they are on the same row and consecutive columns, respectively vertically neighbours if they are on the same column and on consecutive rows.
Output
The output will contain on the first line the maximum number of banana trees that can be obtained by connecting the k regions.
Sample Input
10 37 101 1101 12 2102 17 11200 2022 13 2103 1
Sample Output
9
并查集吧 不知道为什么放在DP专题里
#include<stdio.h>#include<string.h>#include<math.h>#include<iostream>#include<algorithm>#include<queue>#include<stack>#define mem(a,b) memset(a,b,sizeof(a))#define ll __int64#define MAXN 16000#define INF 0x7ffffff#define lson l,m,rt<<1#define rson m+1,r,rt<<1|1using namespace std;struct Point{ int x,y; int id;};Point p[16000+10];int fa[16000+10];int num[16000+10];int cnt[16000+10];int n;int cmpx(Point a,Point b){ if(a.x!=b.x) return a.x<b.x; return a.y<b.y;}int cmpy(Point a,Point b){ if(a.y!=b.y) return a.y<b.y; return a.x<b.x;}int find(int a){ if(fa[a]!=a) fa[a]=find(fa[a]); return fa[a];}void bincha(int a,int b){ int x=find(a); int y=find(b); if(x==y) return ; fa[x]=fa[y]; cnt[y]+=cnt[x]; cnt[x]=0;}int main(){ int m; int i,j; while(cin>>n>>m) { for(i=1;i<=n;i++) { cnt[i]=1; fa[i]=p[i].id=i; scanf("%d%d",&p[i].x,&p[i].y); } sort(p+1,p+n+1,cmpx); for(i=1;i<n;i++) { if(p[i].x==p[i+1].x&&p[i+1].y-p[i].y==1&&fa[p[i+1].id]!=fa[p[i].id]) { int pre=fa[p[i].id]; int pre1=fa[p[i+1].id]; fa[p[i+1].id]=fa[p[i].id]; cnt[pre]+=cnt[pre1]; cnt[pre1]=0; } } sort(p+1,p+n+1,cmpy); for(i=1;i<n;i++) { if(p[i].y==p[i+1].y&&p[i+1].x-p[i].x==1&&fa[p[i+1].id]!=fa[p[i].id]) { bincha(p[i+1].id,p[i].id); } } j=0; for(i=1;i<=n;i++) { if(cnt[i]!=0) { num[j++]=cnt[i]; } } sort(num,num+j); j--; int ans=0; while(m--) { ans+=num[j--]; } cout<<ans<<endl; } return 0;}
poj 1838
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。