結果

問題 No.483 マッチ並べ
ユーザー H3PO4H3PO4
提出日時 2020-11-25 18:59:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,147 ms / 2,000 ms
コード長 774 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 115,040 KB
最終ジャッジ日時 2024-07-23 19:25:41
合計ジャッジ時間 56,655 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,147 ms
55,520 KB
testcase_01 AC 909 ms
55,908 KB
testcase_02 AC 920 ms
55,376 KB
testcase_03 AC 913 ms
55,324 KB
testcase_04 AC 919 ms
55,648 KB
testcase_05 AC 911 ms
55,524 KB
testcase_06 AC 919 ms
55,896 KB
testcase_07 AC 914 ms
55,520 KB
testcase_08 AC 915 ms
55,900 KB
testcase_09 AC 926 ms
55,656 KB
testcase_10 AC 922 ms
56,036 KB
testcase_11 AC 926 ms
55,768 KB
testcase_12 AC 914 ms
55,772 KB
testcase_13 AC 932 ms
55,656 KB
testcase_14 AC 917 ms
55,768 KB
testcase_15 AC 948 ms
55,764 KB
testcase_16 AC 996 ms
55,636 KB
testcase_17 AC 919 ms
55,516 KB
testcase_18 AC 915 ms
55,392 KB
testcase_19 AC 912 ms
55,768 KB
testcase_20 AC 920 ms
55,900 KB
testcase_21 AC 914 ms
55,644 KB
testcase_22 AC 924 ms
55,660 KB
testcase_23 AC 911 ms
55,516 KB
testcase_24 AC 918 ms
55,648 KB
testcase_25 AC 916 ms
55,648 KB
testcase_26 AC 917 ms
55,772 KB
testcase_27 AC 921 ms
55,892 KB
testcase_28 AC 913 ms
55,772 KB
testcase_29 AC 914 ms
55,648 KB
testcase_30 AC 916 ms
55,656 KB
testcase_31 AC 921 ms
55,644 KB
testcase_32 AC 916 ms
55,896 KB
testcase_33 AC 910 ms
55,516 KB
testcase_34 AC 913 ms
55,900 KB
testcase_35 AC 913 ms
55,768 KB
testcase_36 AC 915 ms
55,644 KB
testcase_37 AC 915 ms
55,772 KB
testcase_38 AC 920 ms
55,900 KB
testcase_39 AC 917 ms
55,900 KB
testcase_40 AC 915 ms
55,520 KB
testcase_41 AC 912 ms
55,784 KB
testcase_42 AC 921 ms
55,904 KB
testcase_43 AC 911 ms
55,516 KB
testcase_44 AC 903 ms
55,772 KB
testcase_45 AC 916 ms
55,516 KB
testcase_46 AC 933 ms
55,656 KB
testcase_47 AC 920 ms
55,652 KB
testcase_48 AC 906 ms
55,524 KB
testcase_49 AC 915 ms
55,776 KB
testcase_50 AC 927 ms
55,640 KB
testcase_51 AC 913 ms
55,644 KB
testcase_52 AC 922 ms
55,776 KB
testcase_53 AC 909 ms
55,516 KB
testcase_54 AC 913 ms
55,776 KB
testcase_55 AC 907 ms
115,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

N = int(input())
node = set()
RC = [tuple(map(int, input().split())) for _ in range(N)]
for r0, c0, r1, c1 in RC:
    node.add((r0, c0))
    node.add((r1, c1))
node_d = {rc: i for i, rc in enumerate(node)}

size = len(node_d)
frm, to = [], []
for r0, c0, r1, c1 in RC:
    frm.append(node_d[(r0, c0)])
    to.append(node_d[(r1, c1)])
matr = csr_matrix(([1] * N, (frm, to)), shape=(size, size))
p, labels = connected_components(matr)

conn_node = [0] * p
conn_edge = [0] * p

for x in labels:
    conn_node[x] += 1
for r0, c0, _, _ in RC:
    conn_edge[labels[node_d[(r0, c0)]]] += 1

for n,e in zip(conn_node, conn_edge):
    if n < e:
        print('NO')
        exit()
print('YES')
0