結果

問題 No.19 ステージの選択
ユーザー ああいいああいい
提出日時 2022-03-02 19:35:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 3,731 bytes
コンパイル時間 1,386 ms
コンパイル使用メモリ 86,952 KB
実行使用メモリ 71,564 KB
最終ジャッジ日時 2023-09-23 11:08:03
合計ジャッジ時間 4,364 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,564 KB
testcase_01 AC 76 ms
71,332 KB
testcase_02 AC 76 ms
71,324 KB
testcase_03 AC 76 ms
71,104 KB
testcase_04 AC 76 ms
71,380 KB
testcase_05 AC 76 ms
71,272 KB
testcase_06 AC 76 ms
71,112 KB
testcase_07 AC 77 ms
71,420 KB
testcase_08 AC 76 ms
71,496 KB
testcase_09 AC 77 ms
71,344 KB
testcase_10 AC 78 ms
71,348 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 76 ms
71,496 KB
testcase_15 AC 77 ms
71,516 KB
testcase_16 AC 76 ms
71,400 KB
testcase_17 AC 73 ms
71,228 KB
testcase_18 AC 78 ms
71,484 KB
testcase_19 AC 75 ms
71,340 KB
testcase_20 AC 74 ms
71,312 KB
testcase_21 AC 78 ms
71,432 KB
testcase_22 AC 76 ms
71,496 KB
testcase_23 AC 76 ms
71,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


class SCC():

    #index :0-index or 1-index
    #逆グラフは自動で作る
    def __init__(self,G,index = 1):
        self.G = G
        self.N = len(G)
        self.index = index
        self.rG = self.make_reverse()
        self.order = []
        self.parent = [0] * self.N  #各頂点の属する強連結成分の番号

        self.num = 0     #強連結成分の数
        
        self.build()
        self.sG,self.top,self.Component = self.make_sG()
        #sG 縮約後のグラフ。setでつくってある
        #top sGをトポロジカルソートしたもの
        #Component 各強連結成分に属する頂点をまとめた配列
        

    #逆グラフを作る
    def make_reverse(self):
        G = self.G
        rG = [[] for _ in range(self.N)]
        for v in range(self.index,self.N):
            for u in G[v]:
                rG[u].append(v)
        return rG
    def build(self):
        G = self.G
        rG = self.rG
        parent = self.parent
        order = self.order

        memo = [0] * self.N
        stack = []
        label = 0
        for v in range(self.index,self.N):
            if memo[v] == 1:continue
            stack.append(~v)
            stack.append(v)
            memo[v] = 1
            while stack:
                now = stack.pop()
                if now >= 0:
                    for u in G[now]:
                        if memo[u] == 0:
                            memo[u] = 1
                            stack.append(~u)
                            stack.append(u)
                else:
                    order.append(~now)
        memo = [0] * self.N
        for v in reversed(order):
            if memo[v] == 1:continue
            stack.append(v)
            memo[v] = 1
            parent[v] = label
            while stack:
                now = stack.pop()
                for u in rG[now]:
                    if memo[u] == 1:
                        continue
                    memo[u] = 1
                    stack.append(u)
                    parent[u] = label
            label += 1
        self.num = label
    #縮約後のグラフを作る
    #トポロジカルソートもする
    def make_sG(self):
        sG = [set() for _ in range(self.num)]
        Component = [[] for _ in range(self.num)]
        sGnum = [0] * self.num
        G = self.G
        parent = self.parent
        for v in range(self.index,self.N):
            Component[parent[v]].append(v)
            for u in G[v]:
                if parent[u] == parent[v]:continue
                if parent[u] not in sG[parent[v]]:
                    sG[parent[v]].add(parent[u])
                    sGnum[parent[u]] += 1
        top = []
        stack = []
        for i in range(self.num):
            if sGnum[i] == 0:
                stack.append(i)
        while stack:
            now = stack.pop()
            top.append(now)
            for v in sG[now]:
                sGnum[v] -= 1
                if sGnum[v] == 0:
                    stack.append(v)
        return sG,top,Component
        
N = int(input())
L = [0] * N
G = [[] for _ in range(N)]
for i in range(N):
    L[i],s = map(int,input().split())
    s -= 1
    if i != s:
        G[s].append(i)
scc = SCC(G,0)
Comp = scc.Component
top = scc.top
sG = scc.sG
ans = 0
memo = [0] * scc.num
for v in top:
    if memo[v] == 1:
        for u in Comp[v]:
            ans += L[u] / 2
    else:
        _min = 10 ** 9
        index = -1
        for u in Comp[v]:
            if L[u] < _min:
                _min = L[u]
                index = u
        ans += _min
        for u in Comp[v]:
            if u != index:
                ans += L[u] / 2
    for u in sG[v]:
        memo[u] = 1
print(ans)
0