1619: [Usaco2008 Nov]Guarding the Farm 保衛牧場 搜索

題目http://www.lydsy.com/JudgeOnline/problem.php?id=1619
1619: [Usaco2008 Nov]Guarding the Farm 保衛牧場
Time Limit: 5 Sec Memory Limit: 64 MB
Submit: 694 Solved: 306
[Submit][Status][Discuss]
Description

The farm has many hills upon which Farmer John would like to place guards to ensure the safety of his valuable milk-cows. He wonders how many guards he will need if he wishes to put one on top of each hill. He has a map supplied as a matrix of integers; the matrix has N (1 < N <= 700) rows and M (1 < M <= 700) columns. Each member of the matrix is an altitude H_ij (0 <= H_ij <= 10,000). Help him determine the number of hilltops on the map. A hilltop is one or more adjacent matrix elements of the same value surrounded exclusively by either the edge of the map or elements with a lower (smaller) altitude. Two different elements are adjacent if the magnitude of difference in their X coordinates is no greater than 1 and the magnitude of differences in their Y coordinates is also no greater than 1.

農夫JOHN的農夫上有很多小山丘,他想要在那裏佈置一些保鏢(……)去保衛他的那些相當值錢的奶牛們。 他想知道如果在一座小山丘上佈置一名保鏢的話,他總共需要招聘多少名保鏢。他現在手頭有一個用數字矩陣來表示地形的地圖。這個矩陣有N行(1 < N < = 100)和M列( 1 < M < = 70) 。矩陣中的每個元素都有一個值H_ij(0 < = H_ij < =10,000)來表示該地區的海拔高度。請你幫助他統計出地圖上到底有多少個小山丘。 小山丘的定義是:若地圖中一個元素所鄰接的所有元素都比這個元素高度要小(或它鄰接的是地圖的邊界),則該元素和其周圍所有按照這樣順序排列的元素的集合稱爲一個小山丘。這裏鄰接的意義是:若一個元素與另一個橫座標縱座標和它的橫縱座標相差不超過1,則稱這兩個元素鄰接。 問題名稱:guard 輸入格式: 第一行:兩個由空格隔開的整數N和M 第二行到第N+1行:第I+1行描述了地圖上的第I行,有M個由空格隔開的整數:H_ij. 輸入樣例:(guard.in): 8 7 4 3 2 2 1 0 1 3 3 3 2 1 0 1 2 2 2 2 1 0 0 2 1 1 1 1 0 0 1 1 0 0 0 1 0 0 0 0 1 1 1 0 0 1 2 2 1 1 0 0 1 1 1 2 1 0 輸出格式: 第一行:小山丘的個數 輸出樣例:(guard.out): 3 輸出樣例解釋: 地圖上有三個小山丘:每個小山丘的山峯位置分別在左上角(高度爲4),右上角(高度爲1)和底部(高度爲2)。

Input

  • Line 1: Two space-separated integers: N and M

  • Lines 2..N+1: Line i+1 describes row i of the matrix with M space-separated integers: H_ij

Output

  • Line 1: A single integer that specifies the number of hilltops

Sample Input

8 7

4 3 2 2 1 0 1

3 3 3 2 1 0 1

2 2 2 2 1 0 0

2 1 1 1 1 0 0

1 1 0 0 0 1 0

0 0 0 1 1 1 0

0 1 2 2 1 1 0

0 1 1 1 2 1 0

Sample Output

3

HINT

三個山丘分別是:左上角的高度爲4的方格,右上角的高度爲1的方格,還有最後一行中高度爲2的方格.

思路
排序一邊後搜索判斷聯通塊的個數,聯通的條件:


if(tx>=1&&ty>=1&&tx<=n&&ty<=m&&!vis[tx][ty]&&ma[tx][ty]<=ma[x][y])
代碼用dfs

代碼

#include<iostream>
#include<stdio.h>
#include<algorithm>
using namespace std;
struct node{
    int x,y,h;
}q[490015];
int ma[715][715];
int n,m;
int xx[8]={0,0,1,1,1,-1,-1,-1},yy[8]={1,-1,1,0,-1,1,0,-1}; 
using namespace std;
int vis[715][715];
int cmp(node x,node y)
{
    return x.h>y.h;
}
void dfs(int x,int y)
{

    for(int i=0;i<8;i++)
    {
        int tx=x+xx[i];
        int ty=y+yy[i];
        if(tx>=1&&ty>=1&&tx<=n&&ty<=m&&!vis[tx][ty]&&ma[tx][ty]<=ma[x][y])
        {
            vis[tx][ty]=1;
            dfs(tx,ty);
        }
    }
}
int main()
{
    scanf("%d%d",&n,&m);
    int tot=0;
    for(int i=1;i<=n;i++)
    for(int j=1;j<=m;j++)
    {
        scanf("%d",&ma[i][j]);
        q[++tot].x=i;
        q[tot].y=j;
        q[tot].h=ma[i][j];
    }
    sort(q+1,q+1+tot,cmp);
    int ans=0;
    for(int i=1;i<=tot;i++)
    {
        if(!vis[q[i].x][q[i].y])
        {
            ans++;
            vis[q[i].x][q[i].y]=1;
            dfs(q[i].x,q[i].y);
        }
    }   
    printf("%d",ans);
} 
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章