結果

問題 No.697 池の数はいくつか
ユーザー H3PO4H3PO4
提出日時 2020-12-04 10:03:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 856 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 1,243,676 KB
最終ジャッジ日時 2024-11-25 16:40:20
合計ジャッジ時間 71,804 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 AC 851 ms
56,528 KB
testcase_02 AC 834 ms
56,660 KB
testcase_03 AC 840 ms
56,536 KB
testcase_04 AC 864 ms
56,788 KB
testcase_05 AC 850 ms
56,272 KB
testcase_06 AC 853 ms
56,540 KB
testcase_07 AC 858 ms
56,536 KB
testcase_08 AC 868 ms
56,400 KB
testcase_09 AC 842 ms
56,400 KB
testcase_10 AC 844 ms
56,532 KB
testcase_11 AC 842 ms
56,252 KB
testcase_12 AC 837 ms
56,272 KB
testcase_13 AC 843 ms
56,284 KB
testcase_14 AC 843 ms
56,784 KB
testcase_15 AC 839 ms
56,536 KB
testcase_16 AC 846 ms
56,396 KB
testcase_17 AC 841 ms
56,920 KB
testcase_18 AC 842 ms
56,660 KB
testcase_19 AC 848 ms
56,276 KB
testcase_20 AC 849 ms
56,780 KB
testcase_21 AC 851 ms
56,784 KB
testcase_22 AC 844 ms
56,660 KB
testcase_23 AC 838 ms
56,652 KB
testcase_24 AC 1,339 ms
106,332 KB
testcase_25 AC 1,364 ms
105,872 KB
testcase_26 AC 1,362 ms
106,268 KB
testcase_27 AC 1,357 ms
105,860 KB
testcase_28 AC 1,366 ms
106,168 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
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

input = sys.stdin.buffer.readline
H, W = map(int, input().split())
A = np.array([tuple(map(int, input().split())) for _ in range(H)], dtype=bool)
F = np.arange(H * W).reshape((H, W))

HC = A[1:] & A[:-1]
WC = A[:, 1:] & A[:, :-1]
frm = np.hstack((F[np.concatenate([np.zeros(W, dtype=bool).reshape(1, W), HC], 0)],
                 F[np.concatenate([np.zeros(H, dtype=bool).reshape(H, 1), WC], 1)]))
to = np.hstack((F[np.concatenate([HC, np.zeros(W, dtype=bool).reshape(1, W)], 0)],
                F[np.concatenate([WC, np.zeros(H, dtype=bool).reshape(H, 1)], 1)]))
L = len(frm)
matr = csr_matrix(([1] * L, (frm, to)), shape=(H * W, H * W))
p = connected_components(matr, return_labels=False)
ans = p - np.count_nonzero(~A)
print(ans)
0