結果

問題 No.697 池の数はいくつか
ユーザー conf8oconf8o
提出日時 2020-04-30 08:00:22
言語 Swift
(5.10.0)
結果
TLE  
実行時間 -
コード長 1,098 bytes
コンパイル時間 1,449 ms
コンパイル使用メモリ 138,788 KB
実行使用メモリ 154,700 KB
最終ジャッジ日時 2024-11-25 16:04:54
合計ジャッジ時間 73,055 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
154,700 KB
testcase_01 AC 8 ms
47,532 KB
testcase_02 AC 8 ms
15,904 KB
testcase_03 AC 9 ms
65,184 KB
testcase_04 AC 8 ms
65,284 KB
testcase_05 AC 8 ms
129,960 KB
testcase_06 AC 9 ms
128,760 KB
testcase_07 AC 8 ms
9,344 KB
testcase_08 AC 9 ms
9,088 KB
testcase_09 AC 8 ms
9,088 KB
testcase_10 AC 8 ms
9,216 KB
testcase_11 AC 8 ms
9,088 KB
testcase_12 AC 8 ms
9,344 KB
testcase_13 AC 7 ms
9,216 KB
testcase_14 AC 8 ms
9,216 KB
testcase_15 AC 8 ms
9,088 KB
testcase_16 AC 8 ms
9,088 KB
testcase_17 AC 9 ms
9,216 KB
testcase_18 AC 8 ms
9,088 KB
testcase_19 AC 8 ms
9,344 KB
testcase_20 AC 7 ms
9,088 KB
testcase_21 AC 8 ms
9,216 KB
testcase_22 AC 8 ms
9,088 KB
testcase_23 AC 9 ms
9,216 KB
testcase_24 AC 2,692 ms
19,780 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 4,670 ms
32,600 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
権限があれば一括ダウンロードができます

ソースコード

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"}
    }
}

let (H, W) = readInt2()
var A = readLines(H)
let dires: [(Int16, Int16)] = [(-1, 0),(0, 1),(1, 0),(0, -1)]

func dfs(_ i: Int16, _ j: Int16) -> Int{
    var frontier = ArraySlice<(Int16, Int16)>()
    frontier.append((i, j))
    while let (h, w) = frontier.popFirst() {
        A[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 || !A[Int(sucY)][Int(sucX)] {
                continue
            }
            frontier.append((sucY, sucX))
        }
    }
    return 1
}

func test() {
    var ans = 0
    for i in 0..<H {
        for j in 0..<W {
            if !A[Int(i)][Int(j)] {
                continue
            }
            ans += dfs(i, j)
        }
    }
    print(ans)
}


test()
0