結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,745 ms
56,380 KB
testcase_01 AC 846 ms
56,512 KB
testcase_02 AC 846 ms
56,640 KB
testcase_03 AC 832 ms
56,512 KB
testcase_04 AC 849 ms
56,256 KB
testcase_05 AC 837 ms
56,228 KB
testcase_06 WA -
testcase_07 AC 1,159 ms
60,980 KB
testcase_08 WA -
testcase_09 AC 1,270 ms
65,004 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,327 ms
70,504 KB
testcase_28 AC 1,338 ms
70,516 KB
testcase_29 AC 1,359 ms
71,084 KB
testcase_30 AC 1,352 ms
70,848 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 1,272 ms
67,532 KB
testcase_37 AC 905 ms
56,628 KB
testcase_38 AC 1,327 ms
69,972 KB
testcase_39 AC 973 ms
57,408 KB
testcase_40 AC 1,189 ms
65,292 KB
testcase_41 AC 1,264 ms
66,268 KB
testcase_42 AC 1,468 ms
70,112 KB
testcase_43 AC 1,344 ms
67,284 KB
testcase_44 AC 1,056 ms
58,432 KB
testcase_45 AC 1,216 ms
65,732 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 AC 1,167 ms
64,344 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 852 ms
56,764 KB
testcase_62 AC 836 ms
56,900 KB
testcase_63 AC 1,001 ms
56,644 KB
testcase_64 AC 857 ms
56,640 KB
testcase_65 AC 832 ms
56,640 KB
testcase_66 AC 855 ms
56,648 KB
testcase_67 AC 862 ms
56,636 KB
testcase_68 AC 858 ms
56,640 KB
testcase_69 AC 865 ms
56,764 KB
testcase_70 AC 881 ms
110,208 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)

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