結果

問題 No.697 池の数はいくつか
ユーザー conf8oconf8o
提出日時 2020-02-09 14:23:34
言語 Swift
(5.10.0)
結果
AC  
実行時間 2,353 ms / 6,000 ms
コード長 1,074 bytes
コンパイル時間 12,063 ms
コンパイル使用メモリ 187,280 KB
実行使用メモリ 290,140 KB
最終ジャッジ日時 2024-11-08 08:30:11
合計ジャッジ時間 28,378 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
15,488 KB
testcase_01 AC 12 ms
15,616 KB
testcase_02 AC 11 ms
15,616 KB
testcase_03 AC 11 ms
15,360 KB
testcase_04 AC 12 ms
15,872 KB
testcase_05 AC 12 ms
15,488 KB
testcase_06 AC 12 ms
15,616 KB
testcase_07 AC 12 ms
15,744 KB
testcase_08 AC 12 ms
15,616 KB
testcase_09 AC 12 ms
15,744 KB
testcase_10 AC 13 ms
15,360 KB
testcase_11 AC 12 ms
15,616 KB
testcase_12 AC 12 ms
15,744 KB
testcase_13 AC 11 ms
15,616 KB
testcase_14 AC 12 ms
15,616 KB
testcase_15 AC 12 ms
15,744 KB
testcase_16 AC 11 ms
15,872 KB
testcase_17 AC 12 ms
15,488 KB
testcase_18 AC 12 ms
15,744 KB
testcase_19 AC 11 ms
15,360 KB
testcase_20 AC 12 ms
15,872 KB
testcase_21 AC 12 ms
15,360 KB
testcase_22 AC 11 ms
15,616 KB
testcase_23 AC 11 ms
15,616 KB
testcase_24 AC 223 ms
16,640 KB
testcase_25 AC 219 ms
16,768 KB
testcase_26 AC 219 ms
16,640 KB
testcase_27 AC 220 ms
16,896 KB
testcase_28 AC 219 ms
16,768 KB
testcase_29 AC 2,353 ms
290,012 KB
testcase_30 AC 2,026 ms
24,704 KB
testcase_31 AC 2,302 ms
290,140 KB
testcase_32 AC 2,008 ms
24,704 KB
testcase_33 AC 2,001 ms
24,832 KB
testcase_34 AC 1,991 ms
24,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import Foundation

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

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

let (H, W) = readInt2()
var A = readLines(H)
var dirc = [(-1, 0),(0, 1),(1, 0),(0, -1)]
var ans = 0
for i in 0..<H {
    for j in 0..<W {
        if !A[i][j] {
            continue
        }
        ans += 1
        var frontier: [(Int, Int)] = []
        frontier.append((i, j))
        while !frontier.isEmpty {
            let (h, w) = frontier.popLast()!
            if !A[h][w]{
                continue
            }
            A[h][w] = false
            for (y, x) in dirc {
                let sucY = h+y
                let sucX = w+x
                if sucY < 0 || sucY >= H || sucX < 0 || sucX >= W || !A[sucY][sucX] {
                    continue
                }
                frontier.append((sucY, sucX))
            }
            
        }
    }
}

print(ans)
0