새소식

인기 검색어

백준/실버

[Swift] 2583번 : 영역 구하기

  • -

https://www.acmicpc.net/problem/2583

import Foundation


func solution() {
    
    let inputs = readLine()!
        .components(separatedBy: " ")
        .compactMap { Int($0) }
    
    
    let N = inputs[1]
    let M = inputs[0]
    let K = inputs[2]
    
    var visited: [[Bool]] = Array(repeating: Array(repeating: false, count: M), count: N)
    var result: [Int] = []
    
    for _ in 1...K {
        
        let inputs = readLine()!
            .components(separatedBy: " ")
            .compactMap { Int($0) }

        let (lx, ly) = (inputs[0], inputs[1])
        let (rx, ry) = (inputs[2], inputs[3])
        
        
        for i in lx..<rx {
            for j in ly..<ry {
                visited[i][j] = true
            }
        }
    }
    
    
    for i in 0..<N {
        for j in 0..<M {
            if visited[i][j] { continue }
            bfs(i, j)
        }
    }
    
    
    func bfs(_ i: Int, _ j: Int) {
        
        let dx = [1, -1, 0, 0]
        let dy = [0, 0, 1, -1]
        
        var index = 0
        var queue: [(Int, Int)] = []
        queue.append((i, j))
        visited[i][j] = true
        
        while index < queue.count {
            
            let (x, y) = queue[index]
            index += 1
            
            for i in 0..<4 {
                let nx = x + dx[i]
                let ny = y + dy[i]
                
                if nx < 0 || ny < 0 || N <= nx || M <= ny { continue }
                if visited[nx][ny] { continue }
                
                visited[nx][ny] = true
                queue.append((nx, ny))
            }
        }
        
        
        result.append(index)
    }

    print(result.count)
    result.sorted(by: <).forEach { print($0, terminator: " ") }
}



solution()

 

'백준 > 실버' 카테고리의 다른 글

[Swift] 4949번 : 균형잡힌 세상  (0) 2024.03.18
[Swift] 2667번 : 단지번호 붙이기  (0) 2024.03.18
[Swift] 7672번 : 나이트의 이동  (0) 2024.03.18
[Swift] 1012번 : 유기농 배추  (0) 2024.03.18
[Swift] 1697번 : 숨바꼭질  (0) 2024.03.18
Contents

포스팅 주소를 복사했습니다

이 글이 도움이 되었다면 공감 부탁드립니다.