結果

問題 No.1605 Matrix Shape
ユーザー H3PO4H3PO4
提出日時 2021-07-16 21:50:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 699 bytes
コンパイル時間 119 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 124,700 KB
最終ジャッジ日時 2024-07-06 08:54:25
合計ジャッジ時間 61,724 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 960 ms
58,976 KB
testcase_02 AC 935 ms
59,228 KB
testcase_03 AC 958 ms
59,360 KB
testcase_04 AC 946 ms
59,108 KB
testcase_05 AC 965 ms
59,224 KB
testcase_06 AC 970 ms
59,352 KB
testcase_07 AC 949 ms
59,096 KB
testcase_08 AC 968 ms
58,968 KB
testcase_09 AC 963 ms
59,092 KB
testcase_10 AC 964 ms
59,352 KB
testcase_11 AC 959 ms
59,348 KB
testcase_12 AC 970 ms
59,352 KB
testcase_13 AC 965 ms
59,096 KB
testcase_14 AC 970 ms
59,220 KB
testcase_15 AC 991 ms
59,092 KB
testcase_16 AC 961 ms
59,104 KB
testcase_17 AC 962 ms
59,104 KB
testcase_18 AC 941 ms
58,948 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 AC 1,981 ms
78,184 KB
testcase_35 AC 1,931 ms
85,748 KB
testcase_36 AC 1,574 ms
124,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from scipy.sparse.csgraph import connected_components
from scipy.sparse import csr_matrix

from collections import Counter

N = int(input())
MAX = 2 * 10 ** 5
deg = [0] * MAX
st = set()
frm, to = [], []
for _ in range(N):
    H, W = (int(x) - 1 for x in input().split())
    deg[H] += 1
    deg[W] -= 1
    frm.append(H)
    to.append(W)
    st.add(H)
    st.add(W)

matr = csr_matrix(([1] * N, (frm, to)), shape=(MAX, MAX))
_, labels = connected_components(matr)

# 連結か
if len(set(labels[x] for x in st)) == 1:
    ct = Counter(deg)
    if ct[0] == MAX:
        print(len(st))
    elif ct[0] == MAX - 2 and ct[-1] == ct[1] == 1:
        print(1)
    else:
        print(0)
else:
    print(0)
0