結果

問題 No.19 ステージの選択
ユーザー maspymaspy
提出日時 2023-06-11 23:43:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 993 ms / 5,000 ms
コード長 743 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 56,672 KB
最終ジャッジ日時 2024-06-11 01:54:42
合計ジャッジ時間 27,298 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 832 ms
56,276 KB
testcase_01 AC 993 ms
56,288 KB
testcase_02 AC 832 ms
56,144 KB
testcase_03 AC 827 ms
56,276 KB
testcase_04 AC 834 ms
56,272 KB
testcase_05 AC 837 ms
56,404 KB
testcase_06 AC 840 ms
56,400 KB
testcase_07 AC 826 ms
56,272 KB
testcase_08 AC 873 ms
56,404 KB
testcase_09 AC 845 ms
56,284 KB
testcase_10 AC 849 ms
56,284 KB
testcase_11 AC 850 ms
56,404 KB
testcase_12 AC 841 ms
56,024 KB
testcase_13 AC 876 ms
56,668 KB
testcase_14 AC 873 ms
56,672 KB
testcase_15 AC 820 ms
56,272 KB
testcase_16 AC 817 ms
56,288 KB
testcase_17 AC 820 ms
56,408 KB
testcase_18 AC 826 ms
56,528 KB
testcase_19 AC 813 ms
56,144 KB
testcase_20 AC 823 ms
56,272 KB
testcase_21 AC 835 ms
56,360 KB
testcase_22 AC 826 ms
56,280 KB
testcase_23 AC 828 ms
56,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/ python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
from scipy.sparse.csgraph import connected_components
import numpy as np
N = int(readline())
LS = np.array(read().split(), np.int32)
L = LS[::2]
S = LS[1::2] - 1

graph = np.zeros((N, N), np.bool_)
graph[np.arange(N), S] = 1

Ncomp, comp = connected_components(graph, connection='strong')

out_deg = [0] * Ncomp
for i, s in enumerate(S):
    ci = comp[i]
    cs = comp[s]
    if ci == cs:
        continue
    out_deg[ci] += 1

answer = 0
for i in range(Ncomp):
    V = np.where(comp == i)[0]
    x = L[V].sum()
    y = L[V].min()
    if out_deg[i] == 0:
        x += y
    answer += x

print(answer / 2)
0