2016 长春东北赛---Coconuts(离散化+DFS)
2018-06-17 23:41:46来源:未知 阅读 ()
题目链接
http://acm.hdu.edu.cn/showproblem.php?pid=5925
Now TanBig wants to know how many times he needs to eat all the good coconuts in the field, and how many coconuts he would eat each time(the area of each 4-connected component).
It is guaranteed that in the input data, the first row and the last row will not have bad coconuts at the same time, the first column and the last column will not have bad coconuts at the same time.
#include <algorithm> #include <iostream> #include <cstring> #include <vector> #include <cstdio> #include <cmath> using namespace std; typedef long long LL; const int N=405; LL dx[N],dy[N];///表示每一格压缩的长度; bool v[N][N]; int dir[4][2]={{1,0},{-1,0},{0,1},{0,-1}}; LL r,c; int n; struct Node{ long long v,p; int id; }x[N],y[N]; bool cmp1(const Node s1,const Node s2){ return s1.v<s2.v; } bool cmp2(const Node s1,const Node s2){ return s1.id<s2.id; } LL dfs(int sx,int sy) { LL sum=dx[sx]*dy[sy]; v[sx][sy]=true; for(int i=0;i<4;i++){ int nx=sx+dir[i][0]; int ny=sy+dir[i][1]; if(nx>0&&ny>0&&nx<=r&&ny<=c) if(!v[nx][ny]){ sum+=dfs(nx,ny); } } return sum; } int main() { int T,Case=1; cin>>T; while(T--) { printf("Case #%d:\n",Case++); scanf("%lld%lld%d",&r,&c,&n); for(int i=1;i<=n;i++) { scanf("%lld%lld",&x[i].v,&y[i].v); x[i].id=i; y[i].id=i; } sort(x+1,x+n+1,cmp1); sort(y+1,y+n+1,cmp1); x[n+1].v=r; y[n+1].v=c; x[n+1].id=y[n+1].id=n+1; x[0].v=y[0].v=1; x[0].id=y[0].id=0; int tot=1; dx[1]=1; for(int i=1;i<=n+1;i++) { if(x[i].v==x[i-1].v){ x[i].p=tot; } else if(x[i].v==x[i-1].v+1){ x[i].p=++tot; dx[tot]=1; } else { x[i].p=tot+2; dx[tot+2]=1; dx[tot+1]=x[i].v-x[i-1].v-1; tot+=2; } } r=tot; tot=1; dy[1]=1; for(int i=1;i<=n+1;i++) { if(y[i].v==y[i-1].v){ y[i].p=tot; } else if(y[i].v==y[i-1].v+1){ y[i].p=++tot; dy[tot]=1; } else { y[i].p=tot+2; dy[tot+2]=1; dy[tot+1]=y[i].v-y[i-1].v-1; tot+=2; } } c=tot; memset(v,0,sizeof(v)); sort(x+1,x+n+1,cmp2); sort(y+1,y+n+1,cmp2); for(int i=1;i<=n;i++) v[x[i].p][y[i].p]=true; long long ans[N]; tot=0; for(LL i=1;i<=r;i++) for(LL j=1;j<=c;j++) if(!v[i][j]) ans[tot]=dfs(i,j),tot++; sort(ans,ans+tot); printf("%d\n",tot); for(int i=0;i<tot;i++) printf("%lld%c",ans[i],(i+1==tot)?'\n':' '); } return 0; }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- 2020年3月28日UCF Local Programming Contest 2016 2020-03-31
- 洛谷P4071-[SDOI2016]排列计数 题解 2020-01-12
- [NOIP2016]天天爱跑步-题解 2019-10-08
- CSP201612-2:工资计算 2018-09-05
- CSP201604-2:俄罗斯方块 2018-09-01
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash