結果

問題 No.697 池の数はいくつか
ユーザー Pump0129Pump0129
提出日時 2018-09-18 03:41:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,470 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 11,100 KB
実行使用メモリ 21,480 KB
最終ジャッジ日時 2023-08-16 22:48:04
合計ジャッジ時間 9,554 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
8,268 KB
testcase_01 AC 16 ms
8,344 KB
testcase_02 AC 16 ms
8,340 KB
testcase_03 AC 16 ms
8,272 KB
testcase_04 AC 15 ms
8,284 KB
testcase_05 AC 15 ms
8,224 KB
testcase_06 AC 16 ms
8,228 KB
testcase_07 AC 15 ms
8,312 KB
testcase_08 AC 16 ms
8,352 KB
testcase_09 AC 16 ms
8,208 KB
testcase_10 AC 16 ms
8,316 KB
testcase_11 AC 16 ms
8,336 KB
testcase_12 AC 16 ms
8,308 KB
testcase_13 AC 16 ms
8,236 KB
testcase_14 AC 16 ms
8,268 KB
testcase_15 AC 15 ms
8,264 KB
testcase_16 AC 16 ms
8,260 KB
testcase_17 AC 16 ms
8,340 KB
testcase_18 AC 16 ms
8,228 KB
testcase_19 AC 17 ms
8,276 KB
testcase_20 AC 17 ms
8,280 KB
testcase_21 AC 16 ms
8,300 KB
testcase_22 AC 16 ms
8,224 KB
testcase_23 AC 15 ms
8,332 KB
testcase_24 TLE -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

class No697:
    height, width = 0, 0
    cnt = 0

    def __init__(self):
        self.height, self.width = map(int, input().split(" "))
        self.water_map = [[0 for i in range(self.width)] for j in range(self.height)]
        for i in range(self.height):
            self.water_map[i] = list(map(int, input().split(" ")))

    def solve(self):
        pos_y, pos_x = self.search_water()
        while not pos_y == -1 and not pos_x == -1:
            search_queue = [(pos_x, pos_y)]
            while len(search_queue) != 0:
                px, py = search_queue.pop()
                if self.water_map[py][px] == 1:
                    search_dic = [(0, 1, 0, -1), (1, 0, -1, 0)]
                    for i in range(4):
                        if 0 <= px + search_dic[0][i] < self.width and 0 <= py + search_dic[1][i] < self.height:
                            if self.water_map[py + search_dic[1][i]][px + search_dic[0][i]] == 1:
                                search_queue.append((px + search_dic[0][i], py + search_dic[1][i]))
                    self.water_map[py][px] = 0
            self.cnt += 1
            pos_y, pos_x = self.search_water()
        return self.cnt

    def search_water(self):
        for i in range(self.height):
            for j in range(self.width):
                if self.water_map[i][j] == 1:
                    return i, j
        return -1, -1


if __name__ == "__main__":
    que = No697()
    ans = que.solve()
    print(ans)
0