码迷,mamicode.com
首页 > 其他好文 > 详细

HNU 12868 Island (简单题)

时间:2014-08-07 22:50:45      阅读:267      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   for   art   

题目链接:http://acm.hnu.cn/online/?action=problem&type=show&id=12868&courseid=272

解题报告:输入n*m的地图,+表示土地,-表示水,要你求这个海岛的海岸线有多长,扫一遍就可以了。

bubuko.com,布布扣
 1 #include<cstdio>
 2 const int maxn = 2000;
 3 char map[maxn][maxn];
 4 int _x[4] = {-1,0,1,0};
 5 int _y[4] = {0,1,0,-1};
 6 
 7 int main()
 8 {
 9     int n,m;
10     while(scanf("%d%d",&n,&m)!=EOF)
11     {
12         for(int i = 0;i < n;++i)
13         scanf("%s",map[i]);
14         int tot = 0;
15         for(int i = 0;i < n;++i)
16         for(int j = 0;j < m;++j)
17         if(map[i][j] == +)
18         {
19             int flag = 0;
20             for(int k = 0;k < 4;++k)
21             {
22                 int xx = i + _x[k];
23                 int yy = j + _y[k];
24                 if(xx >= 0 && xx < n && yy >= 0 && yy < m)
25                 if(map[xx][yy] == - || map[xx][yy] == ?)
26                 {
27                     flag = 1;
28                     break;
29                 }
30             }
31             if(flag == 1) tot++;
32         }
33         printf("%d\n",tot);
34     }
35     return 0;
36 }
View Code

 

HNU 12868 Island (简单题),布布扣,bubuko.com

HNU 12868 Island (简单题)

标签:style   blog   http   color   os   io   for   art   

原文地址:http://www.cnblogs.com/xiaxiaosheng/p/3898074.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!