面积问题最简做法
2018-06-17 22:58:00来源:未知 阅读 ()
1 #include<iostream> 2 using namespace std; 3 int xx[5]={-1,+1,0,0}; 4 int yy[5]={0,0,-1,+1}; 5 int a[101][101]; 6 void dfs(int i,int j) 7 { 8 a[i][j]=1; 9 for(int k=0;k<4;k++) 10 { 11 int x=i+xx[k]; 12 int y=j+yy[k]; 13 if(x>=1&&x<=10&&y>=1&&y<=10&&a[x][y]==0) 14 { 15 16 dfs(x,y); 17 } 18 } 19 } 20 int main() 21 { 22 for(int i=1;i<=10;i++) 23 { 24 for(int j=1;j<=10;j++) 25 { 26 cin>>a[i][j]; 27 } 28 } 29 for(int i=1;i<=10;i++) 30 { 31 if(a[1][i]==0) 32 { 33 dfs(1,i); 34 } 35 if(a[i][1]==0) 36 { 37 dfs(i,1); 38 } 39 if(a[10][i]==0) 40 { 41 dfs(10,i); 42 } 43 if(a[i][10]==0) 44 { 45 dfs(i,10); 46 } 47 } 48 int tot=0; 49 for(int i=1;i<=10;i++) 50 { 51 for(int j=1;j<=10;j++) 52 { 53 if(a[i][j]==0) 54 tot++; 55 } 56 } 57 cout<<tot; 58 return 0; 59 }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:1008. 水仙花数
下一篇:C++学习笔记(一)之指针
- WDK驱动调试问题点滴 2020-04-21
- 螺旋矩阵问题 2020-04-18
- 用C++实现:完美的代价 2020-04-15
- 用C++实现:FJ的字符串打印 2020-04-04
- 递归函数使用动态数组遇到的问题 2020-03-26
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