結果

問題 No.1382 Travel in Mitaru city
ユーザー H3PO4H3PO4
提出日時 2021-02-07 20:53:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 540 bytes
コンパイル時間 409 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 73,420 KB
最終ジャッジ日時 2024-07-04 13:59:52
合計ジャッジ時間 87,417 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 833 ms
56,572 KB
testcase_01 AC 815 ms
56,572 KB
testcase_02 AC 844 ms
56,572 KB
testcase_03 AC 850 ms
56,172 KB
testcase_04 AC 854 ms
56,576 KB
testcase_05 AC 863 ms
56,100 KB
testcase_06 WA -
testcase_07 AC 1,147 ms
60,900 KB
testcase_08 WA -
testcase_09 AC 1,273 ms
65,272 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 1,414 ms
70,940 KB
testcase_28 AC 1,371 ms
70,704 KB
testcase_29 AC 1,343 ms
70,760 KB
testcase_30 AC 1,379 ms
70,676 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 1,258 ms
67,284 KB
testcase_37 AC 893 ms
57,832 KB
testcase_38 AC 1,302 ms
69,692 KB
testcase_39 AC 989 ms
57,728 KB
testcase_40 AC 1,189 ms
65,068 KB
testcase_41 AC 1,243 ms
67,068 KB
testcase_42 AC 1,340 ms
69,980 KB
testcase_43 AC 1,285 ms
67,668 KB
testcase_44 AC 987 ms
58,376 KB
testcase_45 AC 1,205 ms
66,464 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 AC 1,161 ms
63,900 KB
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 AC 871 ms
56,448 KB
testcase_62 AC 852 ms
56,956 KB
testcase_63 AC 989 ms
56,832 KB
testcase_64 AC 903 ms
56,576 KB
testcase_65 AC 871 ms
56,320 KB
testcase_66 AC 867 ms
56,576 KB
testcase_67 AC 857 ms
56,332 KB
testcase_68 AC 900 ms
56,588 KB
testcase_69 AC 854 ms
56,448 KB
testcase_70 AC 894 ms
56,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

N, M, S, T = map(int, input().split())
S -= 1
T -= 1
P = tuple(map(int, input().split()))
frm, to = [0] * M, [0] * M
for i in range(M):
    a, b = (int(x) - 1 for x in input().split())
    frm[i] = a
    to[i] = b

matr = csr_matrix(([1] * M, (frm, to)), shape=(N, N))
p, labels = connected_components(matr, directed=False)

ls, ps = labels[S], P[S]
st = set()
for x, p in zip(labels, P):
    if x == ls and p < ps:
        st.add(p)
print(len(st))
0