POJ 2386 java實現

來源:互聯網
上載者:User

標籤:

描述:

Due to recent rains, water has pooled in various places in Farmer John‘s field, which is represented by a rectangle of N x M (1 <= N <= 100; 1 <= M <= 100) squares. Each square contains either water (‘W‘) or dry land (‘.‘). Farmer John would like to figure out how many ponds have formed in his field. A pond is a connected set of squares with water in them, where a square is considered adjacent to all eight of its neighbors. 
Given a diagram of Farmer John‘s field, determine how many ponds he has.

Input

* Line 1: Two space-separated integers: N and M 
* Lines 2..N+1: M characters per line representing one row of Farmer John‘s field. Each character is either ‘W‘ or ‘.‘. The characters do not have spaces between them.

Output

* Line 1: The number of ponds in Farmer John‘s field.

Sample Input

10 12W........WW..WWW.....WWW....WW...WW..........WW..........W....W......W...W.W.....WW.W.W.W.....W..W.W......W...W.......W.
 1 import java.util.Scanner; 2 public class Main { 3  4  5     private static char filed[][]=new char[100][100]; 6     public static void search(int x,int y,int n,int m){ 7         filed[x][y]=‘.‘; 8         for(int i=-1;i<2;i++) 9             for(int j=-1;j<2;j++){10                 int px=x+i,py=y+j;11                 if(px>=0&&py>=0&&px<n&&py<m){12                     if(filed[px][py]==‘W‘){13                         filed[px][py]=‘.‘;14                         Main.search(px, py, n, m);15                     }16                 }17             }18     }19     public static void main(String[] args) {20         // write your code here21         int n=0,m=0;22         int num=0;   //池塘總數23         String s;24         Scanner sc = new Scanner(System.in);25         n=sc.nextInt();26         m=sc.nextInt();27         for(int i=0;i<n;i++){            //輸入W和.28             s=sc.next();29             for(int j=0;j<m;j++){30                 filed[i][j]=s.charAt(j);  //把W和.存入數組31             }32         }33         sc.close();34         for(int i=0;i<n;i++)35             for(int j=0;j<m;j++){36                 if(filed[i][j]==‘W‘){37                     Main.search(i,j,n,m);38                     num++;39                 }40             }41         System.out.println(num);42 43 44     }45 }

 

POJ 2386 java實現

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.