結果

問題 No.697 池の数はいくつか
ユーザー Pump0129Pump0129
提出日時 2018-09-18 17:02:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,702 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 13,880 KB
最終ジャッジ日時 2024-05-04 06:11:37
合計ジャッジ時間 9,640 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
11,008 KB
testcase_01 AC 27 ms
11,008 KB
testcase_02 AC 27 ms
11,008 KB
testcase_03 AC 27 ms
10,880 KB
testcase_04 AC 28 ms
11,008 KB
testcase_05 AC 28 ms
10,880 KB
testcase_06 AC 27 ms
10,880 KB
testcase_07 AC 26 ms
10,880 KB
testcase_08 AC 29 ms
10,880 KB
testcase_09 AC 29 ms
11,008 KB
testcase_10 AC 29 ms
10,880 KB
testcase_11 AC 29 ms
11,008 KB
testcase_12 AC 29 ms
10,880 KB
testcase_13 AC 28 ms
10,880 KB
testcase_14 AC 28 ms
11,008 KB
testcase_15 AC 28 ms
10,880 KB
testcase_16 AC 30 ms
10,880 KB
testcase_17 AC 30 ms
10,880 KB
testcase_18 AC 29 ms
10,880 KB
testcase_19 AC 30 ms
11,008 KB
testcase_20 AC 29 ms
11,008 KB
testcase_21 AC 29 ms
11,008 KB
testcase_22 AC 26 ms
10,880 KB
testcase_23 AC 27 ms
11,008 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
    id = 2

    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):
        search_dic = [(0, 1, 0, -1), (1, 0, -1, 0)]
        remove_id_list = set()
        for h in range(self.height):
            for w in range(self.width):
                if self.water_map[h][w] == 1:
                    pos_id = self.id
                    id_list = set()
                    for k in range(4):
                        vx = w + search_dic[0][k]
                        vy = h + search_dic[1][k]
                        if 0 <= vx < self.width and 0 <= vy < self.height:
                            if 2 <= self.water_map[vy][vx]:
                                id_list.add(self.water_map[vy][vx])
                    if 2 <= len(id_list):
                        pos_id = min(id_list)
                        id_list.remove(min(id_list))
                        remove_id_list = id_list | remove_id_list
                    elif 1 == len(id_list):
                        pos_id = id_list.pop()
                    self.water_map[h][w] = pos_id
                    if self.id == pos_id:
                        self.id += 1
        num_set = set()
        for num_list in self.water_map:
            num_set = num_set | set(num_list)
        return len(num_set) - len(num_set & (remove_id_list | {0}))


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