結果

問題 No.330 Eigenvalue Decomposition
ユーザー 山本信二山本信二
提出日時 2022-04-05 16:59:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 447 bytes
コンパイル時間 468 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 1,654,052 KB
最終ジャッジ日時 2024-11-26 20:28:47
合計ジャッジ時間 85,937 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 AC 1,663 ms
56,088 KB
testcase_02 AC 1,484 ms
170,788 KB
testcase_03 MLE -
testcase_04 AC 1,893 ms
55,948 KB
testcase_05 AC 1,163 ms
95,544 KB
testcase_06 MLE -
testcase_07 AC 1,819 ms
56,272 KB
testcase_08 MLE -
testcase_09 AC 2,891 ms
85,292 KB
testcase_10 AC 966 ms
55,960 KB
testcase_11 AC 1,278 ms
60,072 KB
testcase_12 MLE -
testcase_13 AC 1,809 ms
56,212 KB
testcase_14 MLE -
testcase_15 MLE -
testcase_16 AC 1,464 ms
56,072 KB
testcase_17 TLE -
testcase_18 MLE -
testcase_19 AC 2,098 ms
56,072 KB
testcase_20 MLE -
testcase_21 MLE -
testcase_22 AC 1,408 ms
56,200 KB
testcase_23 TLE -
testcase_24 AC 3,105 ms
69,512 KB
testcase_25 AC 951 ms
56,084 KB
testcase_26 AC 1,002 ms
56,332 KB
testcase_27 MLE -
testcase_28 AC 1,850 ms
55,952 KB
testcase_29 MLE -
testcase_30 AC 1,363 ms
56,204 KB
testcase_31 AC 950 ms
56,080 KB
testcase_32 AC 948 ms
56,336 KB
testcase_33 AC 972 ms
55,952 KB
testcase_34 AC 956 ms
55,952 KB
testcase_35 AC 966 ms
63,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
from scipy.sparse.csgraph import connected_components
from scipy.sparse import csr_matrix
n, m = map(int, input().split())
graph = [[0]*n for _ in range(n)]
for _ in range(m):
    a, b,c = map(int, input().split())
    graph[a-1][b-1] = 1
    graph[b-1][a-1] = 1  # 有向グラフなら消す# [[0, 1, 1, 0, 1], ..., [1, 0, 1, 1, 0]]

a = np.array(graph)

# <class 'numpy.ndarray'>

n, labels = connected_components(a)
print(n)
0