結果

問題 No.19 ステージの選択
ユーザー szkhtsszkhts
提出日時 2021-04-08 12:50:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 380 ms / 5,000 ms
コード長 843 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-06-23 16:38:18
合計ジャッジ時間 3,796 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
11,008 KB
testcase_01 AC 32 ms
11,008 KB
testcase_02 AC 29 ms
11,008 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 380 ms
10,880 KB
testcase_05 AC 128 ms
11,008 KB
testcase_06 AC 155 ms
11,008 KB
testcase_07 AC 240 ms
11,008 KB
testcase_08 AC 293 ms
11,008 KB
testcase_09 AC 374 ms
10,880 KB
testcase_10 AC 31 ms
11,008 KB
testcase_11 AC 29 ms
10,880 KB
testcase_12 AC 30 ms
11,008 KB
testcase_13 AC 29 ms
10,880 KB
testcase_14 AC 35 ms
10,880 KB
testcase_15 AC 47 ms
11,008 KB
testcase_16 AC 105 ms
11,008 KB
testcase_17 AC 39 ms
11,008 KB
testcase_18 AC 263 ms
11,008 KB
testcase_19 AC 55 ms
10,880 KB
testcase_20 AC 32 ms
10,880 KB
testcase_21 AC 97 ms
10,880 KB
testcase_22 AC 52 ms
10,880 KB
testcase_23 AC 92 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
dist = [[False] * N for _ in range(N)]

level = [0] * N
stage = [0] * N
reg = 0
for i in range(N):
    l, s = map(int, input().split())
    level[i] = l
    stage[i] = s - 1
    dist[i][stage[i]] = True
    dist[i][i] = True

    reg += level[i]

for k in range(N):
    for i in range(N):
        for j in range(N):
            dist[i][j] = dist[i][j] | (dist[i][k] & dist[k][j])

for i in range(N):
    flag = True
    for j in range(i):
        if dist[i][j] and dist[j][i]:
            flag = False
    if not flag:
        continue

    for j in range(N):
        if dist[i][j] and not dist[j][i]:
            flag = False
    if not flag:
        continue

    mincost = 999
    for j in range(i, N):
        if dist[i][j] and dist[j][i]:
            mincost = min(mincost, level[j])

    reg += mincost

print(reg / 2)

0