๋ฐฑ์ค€/C++

[๋ฐฑ์ค€/C++] 14716๋ฒˆ ํ˜„์ˆ˜๋ง‰

yulee_to 2022. 7. 16. 22:39

๋ฐฑ์ค€
14716๋ฒˆ ํ˜„์ˆ˜๋ง‰
14716๋ฒˆ ํ˜„์ˆ˜๋ง‰


๐Ÿค”๋ฌธ์ œ ์ดํ•ด

์ƒ, ํ•˜, ์ขŒ, ์šฐ, ๋Œ€๊ฐ์„  4๋ฐฉํ–ฅ์œผ๋กœ ์ธ์ ‘ํ•œ 1์„ ํ•œ ๊ธ€์ž๋กœ ์ทจ๊ธ‰ํ•˜์—ฌ ๊ธ€์ž๊ฐ€ ๋ช‡๊ฐœ ์žˆ๋Š”์ง€ ๊ตฌํ•˜๋Š” ๋ฌธ์ œ์ด๋‹ค.


๐Ÿ”ฅํ’€์ด๐Ÿ”ฅ

์ •๋ง ๊ฐ„๋‹จํ•œ BFS ๋ฌธ์ œ์ธ๋ฐ ๋ฐฉํ–ฅ์ด 4๊ฐœ ๋” ์ถ”๊ฐ€๋œ ๋ฒ„์ „์ด๋‹ค.

๋ฐฉํ–ฅ์„ ํ‘œํ˜„ํ•ด์ฃผ๋Š” dx์™€ dy๋ฅผ ๋‹ค์Œ๊ณผ ๊ฐ™์ด ์„ ์–ธํ•ด์„œ ์˜ค๋ฅธ์ชฝ, ์™ผ์ชฝ, ์œ„์ชฝ, ์•„๋ž˜์ชฝ, ์˜ค๋ฅธ์ชฝ ์•„๋ž˜, ์™ผ์ชฝ ์•„๋ž˜, ์˜ค๋ฅธ์ชฝ ์œ„, ์™ผ์ชฝ ์œ„๋ฅผ ๋‚˜ํƒ€๋‚ด์ฃผ์—ˆ๋‹ค.

 

int dx[8] = { 1, -1, 0 , 0 , 1, -1, 1, -1};
int dy[8] = { 0, 0, 1, -1, 1, -1, -1, 1};

#include <iostream>
#include <queue>
using namespace std;

int m, n;
int map[251][251];
bool visited[251][251];
queue<pair<int,int>> q;

int dx[8] = { 1, -1, 0 , 0 , 1, -1, 1, -1};
int dy[8] = { 0, 0, 1, -1, 1, -1, -1, 1};

bool isValid(int y, int x){
    return x >=0 && y >=0 && x < n && y < m && !visited[y][x];
}

void BFS(){
    while(!q.empty()){
        int y = q.front().first;
        int x = q.front().second;
        q.pop();

        for(int i=0; i < 8; i++){
            int mv_y = y + dy[i];
            int mv_x = x + dx[i];
            if( isValid(mv_y, mv_x) && map[mv_y][mv_x] == 1) {
                q.push({mv_y, mv_x});
                visited[mv_y][mv_x]= true;
            }
        }
    }
}

int main (){
    cin.tie(nullptr);
    cout.tie(nullptr);
    ios::sync_with_stdio(false);

    cin >> m >> n;
    for(int i=0; i < m; i++){
        for(int j=0;j < n; j++){
            cin>> map[i][j];
        }
    }
    int cnt =0;
    for(int i=0; i < m; i++){
        for(int j=0;j < n; j++){
            if(map[i][j] == 1 && !visited[i][j] ) {
                visited[i][j] = true;
                q.push({i, j});
                BFS();
                cnt++;
            }
        }
    }
    cout << cnt;
}

 

728x90