結果

問題 No.697 池の数はいくつか
ユーザー H3PO4H3PO4
提出日時 2020-12-06 22:07:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,006 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 836,728 KB
最終ジャッジ日時 2024-11-25 16:44:48
合計ジャッジ時間 59,585 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 953 ms
56,424 KB
testcase_01 AC 950 ms
56,544 KB
testcase_02 AC 949 ms
56,808 KB
testcase_03 AC 950 ms
56,288 KB
testcase_04 AC 953 ms
56,544 KB
testcase_05 AC 956 ms
56,420 KB
testcase_06 AC 954 ms
56,560 KB
testcase_07 AC 959 ms
56,932 KB
testcase_08 AC 951 ms
56,164 KB
testcase_09 AC 945 ms
56,040 KB
testcase_10 AC 956 ms
56,552 KB
testcase_11 AC 953 ms
56,672 KB
testcase_12 AC 947 ms
56,168 KB
testcase_13 AC 956 ms
56,544 KB
testcase_14 AC 983 ms
56,672 KB
testcase_15 AC 951 ms
56,804 KB
testcase_16 AC 958 ms
56,544 KB
testcase_17 AC 957 ms
56,416 KB
testcase_18 AC 952 ms
56,420 KB
testcase_19 AC 949 ms
56,540 KB
testcase_20 AC 965 ms
56,548 KB
testcase_21 AC 955 ms
56,556 KB
testcase_22 AC 960 ms
56,288 KB
testcase_23 AC 953 ms
56,548 KB
testcase_24 AC 1,200 ms
93,540 KB
testcase_25 AC 1,209 ms
93,264 KB
testcase_26 AC 1,211 ms
95,316 KB
testcase_27 AC 1,182 ms
93,224 KB
testcase_28 AC 1,206 ms
95,324 KB
testcase_29 TLE -
testcase_30 MLE -
testcase_31 TLE -
testcase_32 MLE -
testcase_33 MLE -
testcase_34 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
from sys import stdin
from scipy.sparse.csgraph import connected_components
from scipy.sparse import csr_matrix


def main():
    H, W = map(int, stdin.buffer.readline().split())
    A = (np.frombuffer(stdin.buffer.read(), dtype='S1')[::2] == b'1').reshape((H, W))
    F = np.arange(H * W, dtype='u4').reshape((H, W))
    ct_0 = np.count_nonzero(~A)

    HC = A[1:] & A[:-1]
    ZW = np.zeros(W, dtype=bool).reshape(1, W)
    frm1 = F[np.concatenate([ZW, HC], 0)]
    to1 = F[np.concatenate([HC, ZW], 0)]
    del HC, ZW

    WC = A[:, 1:] & A[:, :-1]
    del A
    ZH = np.zeros(H, dtype=bool).reshape(H, 1)
    frm2 = F[np.concatenate([ZH, WC], 1)]
    to2 = F[np.concatenate([WC, ZH], 1)]
    del WC, ZH
    del F

    frm = np.hstack((frm1, frm2))
    to = np.hstack((to1, to2))
    L = len(frm)
    matr = csr_matrix(([1] * L, (frm, to)), shape=(H * W, H * W))
    del frm, to
    p = connected_components(matr, return_labels=False)
    ans = p - ct_0
    return ans


print(main())
0