結果

問題 No.697 池の数はいくつか
ユーザー H3PO4H3PO4
提出日時 2020-12-06 21:52:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 993 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 836,140 KB
最終ジャッジ日時 2024-11-25 16:42:26
合計ジャッジ時間 47,685 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 870 ms
56,296 KB
testcase_01 AC 868 ms
56,420 KB
testcase_02 AC 868 ms
56,292 KB
testcase_03 AC 862 ms
56,680 KB
testcase_04 AC 866 ms
56,560 KB
testcase_05 AC 875 ms
56,308 KB
testcase_06 AC 869 ms
56,556 KB
testcase_07 AC 881 ms
56,548 KB
testcase_08 AC 887 ms
56,552 KB
testcase_09 AC 870 ms
56,420 KB
testcase_10 AC 865 ms
56,620 KB
testcase_11 AC 859 ms
56,552 KB
testcase_12 AC 959 ms
56,176 KB
testcase_13 AC 870 ms
56,560 KB
testcase_14 AC 861 ms
56,548 KB
testcase_15 AC 870 ms
56,416 KB
testcase_16 AC 867 ms
56,296 KB
testcase_17 AC 857 ms
56,552 KB
testcase_18 AC 857 ms
56,428 KB
testcase_19 AC 856 ms
56,568 KB
testcase_20 AC 873 ms
56,684 KB
testcase_21 AC 847 ms
56,548 KB
testcase_22 AC 859 ms
56,556 KB
testcase_23 AC 847 ms
56,424 KB
testcase_24 AC 1,118 ms
106,140 KB
testcase_25 AC 1,102 ms
106,216 KB
testcase_26 AC 1,090 ms
108,136 KB
testcase_27 AC 1,095 ms
105,800 KB
testcase_28 AC 1,088 ms
107,968 KB
testcase_29 MLE -
testcase_30 MLE -
testcase_31 MLE -
testcase_32 MLE -
testcase_33 MLE -
testcase_34 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

buf = sys.stdin.buffer
input = sys.stdin.buffer.readline


def main():
    H, W = map(int, input().split())
    A = (np.frombuffer(buf.read(), dtype='S1')[::2] == b'1').reshape((H, W))
    F = np.arange(H * W).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]
    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 A, 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))
    p = connected_components(matr, return_labels=False)
    ans = p - ct_0
    return ans


print(main())
0