結果

問題 No.2573 moving up
ユーザー 👑 rin204rin204
提出日時 2023-12-10 18:11:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 168 ms / 2,000 ms
コード長 1,626 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-09-27 04:08:35
合計ジャッジ時間 3,821 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
61,824 KB
testcase_01 AC 130 ms
76,160 KB
testcase_02 AC 168 ms
75,904 KB
testcase_03 AC 163 ms
76,288 KB
testcase_04 AC 114 ms
76,436 KB
testcase_05 AC 144 ms
76,160 KB
testcase_06 AC 141 ms
76,544 KB
testcase_07 AC 117 ms
76,288 KB
testcase_08 AC 62 ms
68,736 KB
testcase_09 AC 83 ms
76,416 KB
testcase_10 AC 99 ms
76,544 KB
testcase_11 AC 67 ms
69,376 KB
testcase_12 AC 81 ms
73,728 KB
testcase_13 AC 107 ms
76,160 KB
testcase_14 AC 56 ms
65,536 KB
testcase_15 AC 51 ms
62,592 KB
testcase_16 AC 58 ms
67,840 KB
testcase_17 AC 80 ms
75,776 KB
testcase_18 AC 76 ms
72,160 KB
testcase_19 AC 111 ms
75,904 KB
testcase_20 AC 65 ms
68,864 KB
testcase_21 AC 63 ms
68,608 KB
testcase_22 AC 78 ms
76,372 KB
testcase_23 AC 63 ms
68,864 KB
testcase_24 AC 76 ms
75,960 KB
testcase_25 AC 101 ms
76,416 KB
testcase_26 AC 62 ms
67,584 KB
testcase_27 AC 36 ms
52,352 KB
testcase_28 AC 38 ms
51,968 KB
testcase_29 AC 38 ms
52,096 KB
testcase_30 AC 35 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Hungarian(A, inf=1 << 60):
    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]]
        while j0 != 0:
            j1 = way[j0]
            P[j0] = P[j1]
            j0 = j1

    ret = [-1] * (n - 1)
    for j in range(1, m):
        if P[j] != 0:
            ret[P[j] - 1] = j - 1

    return -V[0], ret


h, w = map(int, input().split())
ans = 0
A = [[0] * w for _ in range(w)]

for i in range(w):
    x, y = map(int, input().split())
    x -= 1
    y -= 1
    ans += x
    l = y - x
    r = y
    for j in range(w):
        if j < l:
            A[i][j] = l - j
        elif j > r:
            A[i][j] = j - r

res = Hungarian(A)
print(res[0] + ans)
0