結果

問題 No.19 ステージの選択
ユーザー ゆるくゆるく
提出日時 2014-11-20 02:34:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 906 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,520 KB
最終ジャッジ日時 2024-06-10 21:17:17
合計ジャッジ時間 1,796 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
11,520 KB
testcase_01 AC 31 ms
11,392 KB
testcase_02 AC 31 ms
11,520 KB
testcase_03 AC 31 ms
11,392 KB
testcase_04 AC 33 ms
11,392 KB
testcase_05 AC 33 ms
11,392 KB
testcase_06 AC 32 ms
11,392 KB
testcase_07 AC 31 ms
11,392 KB
testcase_08 AC 31 ms
11,392 KB
testcase_09 AC 33 ms
11,392 KB
testcase_10 AC 30 ms
11,520 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 30 ms
11,520 KB
testcase_15 AC 30 ms
11,392 KB
testcase_16 AC 31 ms
11,520 KB
testcase_17 AC 29 ms
11,520 KB
testcase_18 AC 31 ms
11,520 KB
testcase_19 AC 30 ms
11,520 KB
testcase_20 AC 31 ms
11,392 KB
testcase_21 AC 31 ms
11,392 KB
testcase_22 AC 30 ms
11,392 KB
testcase_23 AC 30 ms
11,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#sys.setrecursionlimit(n)
import heapq
import re
import bisect
import random
import math
import itertools
from collections import defaultdict, deque
from copy import deepcopy

n = int(input())
e = deque([[int(i) for i in input().split()] for i in range(n)])
e.appendleft([0,0])

v = [False] * (n + 1)
d = [False] * (n + 1)
def dfs(i, j):
  if d[e[i][1]]:
    return -1
  if i == j:
    return j
  if v[e[i][1]]:
    return -1
  v[i] = True
  ret = dfs(e[i][1], j)
  if ret == -1:
    return -1
  if e[i][0] < e[ret][0]:
    return i
  return ret

ans = 0
for i in range(1, n + 1):
  if d[i]:
    continue
  v = [False] * (n + 1)
  ret = dfs(e[i][1], i)
  if ret >= 0:
    ans += e[ret][0]
    d[ret] = True

for _ in range(1, n + 1):
  for i in range(1, n + 1):
    if d[e[i][1]] and not(d[i]):
      ans += e[i][0] / 2
      d[i] = True
print(ans)
0