結果

問題 No.19 ステージの選択
ユーザー szkhtsszkhts
提出日時 2022-11-06 08:47:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 357 ms / 5,000 ms
コード長 843 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-19 23:54:31
合計ジャッジ時間 3,423 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 331 ms
10,752 KB
testcase_05 AC 120 ms
10,624 KB
testcase_06 AC 154 ms
10,752 KB
testcase_07 AC 218 ms
10,752 KB
testcase_08 AC 267 ms
10,752 KB
testcase_09 AC 357 ms
10,752 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 26 ms
10,752 KB
testcase_12 AC 27 ms
10,752 KB
testcase_13 AC 25 ms
10,752 KB
testcase_14 AC 31 ms
10,752 KB
testcase_15 AC 41 ms
10,752 KB
testcase_16 AC 105 ms
10,752 KB
testcase_17 AC 36 ms
10,624 KB
testcase_18 AC 257 ms
10,752 KB
testcase_19 AC 51 ms
10,624 KB
testcase_20 AC 29 ms
10,752 KB
testcase_21 AC 98 ms
10,752 KB
testcase_22 AC 45 ms
10,752 KB
testcase_23 AC 86 ms
10,752 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