結果

問題 No.519 アイドルユニット
ユーザー 👑 rin204rin204
提出日時 2022-11-08 18:25:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,472 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 65,256 KB
最終ジャッジ日時 2024-07-22 02:33:39
合計ジャッジ時間 2,962 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
65,256 KB
testcase_01 AC 52 ms
62,576 KB
testcase_02 AC 46 ms
60,156 KB
testcase_03 WA -
testcase_04 AC 40 ms
53,344 KB
testcase_05 AC 39 ms
53,476 KB
testcase_06 AC 39 ms
53,192 KB
testcase_07 AC 42 ms
53,144 KB
testcase_08 AC 39 ms
53,372 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 39 ms
53,020 KB
testcase_13 AC 40 ms
54,312 KB
testcase_14 AC 43 ms
53,880 KB
testcase_15 AC 41 ms
53,044 KB
testcase_16 AC 41 ms
54,808 KB
testcase_17 AC 40 ms
53,360 KB
testcase_18 AC 45 ms
58,180 KB
testcase_19 WA -
testcase_20 AC 40 ms
53,344 KB
testcase_21 AC 45 ms
60,092 KB
testcase_22 AC 39 ms
54,268 KB
testcase_23 AC 42 ms
53,700 KB
testcase_24 WA -
testcase_25 AC 47 ms
61,124 KB
testcase_26 AC 45 ms
59,492 KB
testcase_27 AC 47 ms
60,960 KB
testcase_28 WA -
testcase_29 AC 55 ms
64,092 KB
testcase_30 AC 48 ms
62,416 KB
testcase_31 AC 50 ms
61,680 KB
testcase_32 AC 53 ms
64,516 KB
testcase_33 AC 40 ms
53,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def hungarian(A):
    inf = 1 << 40
    n = len(A) + 1
    m = len(A[0]) + 1
    P = [0] * m
    way = [0] * m
    U = [0] * n
    V = [0] * m
    for i in range(1, n):
        P[0] = i
        minV = [inf] * m
        used = [False] * m
        j0 = 0
        while P[j0] != 0:
            i0 = P[j0]
            j1 = 0
            used[j0] = True
            delta = inf
            for j in range(1, m):
                if used[j]:
                    continue
                if i0 == 0 or j == 0:
                    cur =  -U[i0] - V[j]
                else:
                    cur = A[i0 - 1][j - 1] - U[i0] - V[j]
                if cur < minV[j]:
                    minV[j] = cur
                    way[j] = j0
                if minV[j] < delta:
                    delta = minV[j]
                    j1 = j
            for j in range(m):
                if used[j]:
                    U[P[j]] += delta
                    V[j] -= delta
                else:
                    minV[j] -= delta
            j0 = j1
        P[j0] = P[way[j0]]
        j0 = way[j0]
        while j0 != 0:
            P[j0] = P[way[j0]]
            j0 = way[j0]
    
    ret = [-1] * (n - 1)
    for i in range(1, m):
        if P[i] != 0:
            ret[P[i] - 1] = i - 1
    return -V[0], ret

n = int(input())
F = [list(map(int, input().split())) for _ in range(n)]
for i in range(n):
    for j in range(n):
        F[i][j] *= -1

ans = hungarian(F)[0]
print(-ans // 2)


0