結果

問題 No.697 池の数はいくつか
ユーザー conf8oconf8o
提出日時 2020-02-10 11:44:24
言語 Swift
(5.10.0)
結果
AC  
実行時間 2,099 ms / 6,000 ms
コード長 1,205 bytes
コンパイル時間 9,975 ms
コンパイル使用メモリ 134,976 KB
実行使用メモリ 84,448 KB
最終ジャッジ日時 2024-11-08 08:31:07
合計ジャッジ時間 25,344 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
9,216 KB
testcase_01 AC 10 ms
9,088 KB
testcase_02 AC 9 ms
9,088 KB
testcase_03 AC 9 ms
9,216 KB
testcase_04 AC 9 ms
9,472 KB
testcase_05 AC 9 ms
9,344 KB
testcase_06 AC 10 ms
9,344 KB
testcase_07 AC 9 ms
9,472 KB
testcase_08 AC 9 ms
9,216 KB
testcase_09 AC 9 ms
9,088 KB
testcase_10 AC 9 ms
9,216 KB
testcase_11 AC 9 ms
9,088 KB
testcase_12 AC 9 ms
9,216 KB
testcase_13 AC 9 ms
9,344 KB
testcase_14 AC 9 ms
9,344 KB
testcase_15 AC 10 ms
9,088 KB
testcase_16 AC 9 ms
9,216 KB
testcase_17 AC 9 ms
9,216 KB
testcase_18 AC 10 ms
9,344 KB
testcase_19 AC 10 ms
9,216 KB
testcase_20 AC 9 ms
9,472 KB
testcase_21 AC 10 ms
9,216 KB
testcase_22 AC 9 ms
9,088 KB
testcase_23 AC 9 ms
9,216 KB
testcase_24 AC 213 ms
10,368 KB
testcase_25 AC 213 ms
10,368 KB
testcase_26 AC 212 ms
10,240 KB
testcase_27 AC 214 ms
10,368 KB
testcase_28 AC 259 ms
10,368 KB
testcase_29 AC 2,099 ms
84,448 KB
testcase_30 AC 1,966 ms
18,432 KB
testcase_31 AC 2,047 ms
84,320 KB
testcase_32 AC 1,949 ms
18,304 KB
testcase_33 AC 1,955 ms
18,304 KB
testcase_34 AC 1,943 ms
18,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

func readInt2() -> (Int16, Int16) {
    let l = readLine()!.split(separator: " ").map{Int16($0)!}
    return (l[0], l[1])
}

func readLines(_ n: Int16) -> [[Bool]] {
    return (0..<n).map{(Int16) -> [Bool] in
        return readLine()!.split(separator: " ").map{$0 == "1"}
    }
}

func dfs(_ i: Int16, _ j: Int16, _ grid: inout [[Bool]], _ H: Int16, _ W: Int16) -> Int{
    var frontier: [(Int16, Int16)] = []
    frontier.append((i, j))
    let dires: [(Int16, Int16)] = [(-1, 0),(0, 1),(1, 0),(0, -1)]
    while !frontier.isEmpty {
        let (h, w) = frontier.popLast()!
        grid[Int(h)][Int(w)] = false
        for (y, x) in dires {
            let sucY = h+y
            let sucX = w+x
            if sucY < 0 || sucY >= H || sucX < 0 || sucX >= W || !grid[Int(sucY)][Int(sucX)] {
                continue
            }
            frontier.append((sucY, sucX))
        }
    }
    return 1
}

func main() {
    let (H, W): (Int16, Int16) = readInt2()
    var A = readLines(H)
    var ans = 0
    for i in 0..<H {
        for j in 0..<W {
            if !A[Int(i)][Int(j)] {
                continue
            }
            ans += dfs(i, j, &A, H, W)
        }
    }
    print(ans)
}

main()
0