結果

問題 No.771 しおり
ユーザー tcltktcltk
提出日時 2021-05-19 11:04:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,564 ms / 2,000 ms
コード長 1,028 bytes
コンパイル時間 571 ms
コンパイル使用メモリ 81,992 KB
実行使用メモリ 145,348 KB
最終ジャッジ日時 2024-07-22 07:27:56
合計ジャッジ時間 22,921 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,352 ms
145,072 KB
testcase_01 AC 251 ms
94,908 KB
testcase_02 AC 121 ms
86,828 KB
testcase_03 AC 124 ms
86,304 KB
testcase_04 AC 124 ms
86,088 KB
testcase_05 AC 125 ms
86,432 KB
testcase_06 AC 124 ms
86,648 KB
testcase_07 AC 122 ms
86,296 KB
testcase_08 AC 153 ms
89,284 KB
testcase_09 AC 123 ms
86,824 KB
testcase_10 AC 126 ms
86,364 KB
testcase_11 AC 125 ms
86,268 KB
testcase_12 AC 125 ms
86,644 KB
testcase_13 AC 124 ms
86,436 KB
testcase_14 AC 150 ms
89,300 KB
testcase_15 AC 121 ms
86,664 KB
testcase_16 AC 123 ms
86,608 KB
testcase_17 AC 143 ms
89,280 KB
testcase_18 AC 122 ms
86,620 KB
testcase_19 AC 123 ms
86,780 KB
testcase_20 AC 120 ms
86,224 KB
testcase_21 AC 120 ms
86,444 KB
testcase_22 AC 125 ms
86,700 KB
testcase_23 AC 136 ms
88,780 KB
testcase_24 AC 145 ms
89,532 KB
testcase_25 AC 663 ms
115,916 KB
testcase_26 AC 159 ms
90,000 KB
testcase_27 AC 253 ms
94,864 KB
testcase_28 AC 445 ms
101,656 KB
testcase_29 AC 262 ms
94,924 KB
testcase_30 AC 1,391 ms
144,664 KB
testcase_31 AC 1,374 ms
144,464 KB
testcase_32 AC 179 ms
90,856 KB
testcase_33 AC 1,429 ms
145,096 KB
testcase_34 AC 1,398 ms
145,052 KB
testcase_35 AC 175 ms
90,324 KB
testcase_36 AC 158 ms
89,492 KB
testcase_37 AC 155 ms
89,512 KB
testcase_38 AC 173 ms
90,680 KB
testcase_39 AC 156 ms
89,176 KB
testcase_40 AC 616 ms
115,720 KB
testcase_41 AC 1,406 ms
145,348 KB
testcase_42 AC 1,333 ms
144,840 KB
testcase_43 AC 250 ms
94,756 KB
testcase_44 AC 1,564 ms
144,672 KB
testcase_45 AC 1,281 ms
144,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#region Header
#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
import bisect
import heapq


def input():
    return sys.stdin.readline()[:-1]


# sys.setrecursionlimit(1000000)
#endregion

# _INPUT = """3
# 1 4
# 2 4
# 3 4
# """
# sys.stdin = io.StringIO(_INPUT)


def main():
    N = int(input())
    A = [None for _ in range(N)]
    B = [None for _ in range(N)]
    for i in range(N):
        A[i], B[i] = map(int, input().split())

    dp = [[10**6] * N for _ in range(1<<N)]
    for i in range(N):
        dp[1<<i][i] = 0

    for s in range(1<<N):
        for k in range(N):
            if not(s & (1<<k)):
                continue
            for i in range(N):
                if s & (1<<i):
                    continue
                v1 = max(dp[s][k], B[k] - A[k] + A[i])
                s1 = s | (1<<i)
                dp[s1][i] = min(dp[s1][i], v1)

    ans = min(dp[(1<<N)-1])
    print(ans)

if __name__ == '__main__':
    main()
0