結果

問題 No.771 しおり
ユーザー brthyyjpbrthyyjp
提出日時 2021-10-15 00:46:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,101 ms / 2,000 ms
コード長 696 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,700 KB
実行使用メモリ 132,704 KB
最終ジャッジ日時 2024-07-22 07:29:08
合計ジャッジ時間 15,373 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,101 ms
132,404 KB
testcase_01 AC 150 ms
82,720 KB
testcase_02 AC 39 ms
52,428 KB
testcase_03 AC 43 ms
52,380 KB
testcase_04 AC 40 ms
53,016 KB
testcase_05 AC 39 ms
53,276 KB
testcase_06 AC 37 ms
53,296 KB
testcase_07 AC 39 ms
52,560 KB
testcase_08 AC 59 ms
66,856 KB
testcase_09 AC 41 ms
51,892 KB
testcase_10 AC 38 ms
52,012 KB
testcase_11 AC 38 ms
52,164 KB
testcase_12 AC 38 ms
52,440 KB
testcase_13 AC 38 ms
53,456 KB
testcase_14 AC 66 ms
70,396 KB
testcase_15 AC 39 ms
52,920 KB
testcase_16 AC 41 ms
59,396 KB
testcase_17 AC 53 ms
65,392 KB
testcase_18 AC 36 ms
53,452 KB
testcase_19 AC 43 ms
58,664 KB
testcase_20 AC 38 ms
52,904 KB
testcase_21 AC 36 ms
52,260 KB
testcase_22 AC 41 ms
58,200 KB
testcase_23 AC 44 ms
61,516 KB
testcase_24 AC 53 ms
64,724 KB
testcase_25 AC 515 ms
103,072 KB
testcase_26 AC 72 ms
73,824 KB
testcase_27 AC 154 ms
82,056 KB
testcase_28 AC 311 ms
89,304 KB
testcase_29 AC 159 ms
82,600 KB
testcase_30 AC 1,052 ms
132,076 KB
testcase_31 AC 1,062 ms
132,336 KB
testcase_32 AC 92 ms
77,304 KB
testcase_33 AC 1,054 ms
132,340 KB
testcase_34 AC 958 ms
132,704 KB
testcase_35 AC 95 ms
77,436 KB
testcase_36 AC 66 ms
71,736 KB
testcase_37 AC 68 ms
72,188 KB
testcase_38 AC 94 ms
77,420 KB
testcase_39 AC 69 ms
72,872 KB
testcase_40 AC 487 ms
104,060 KB
testcase_41 AC 1,066 ms
132,176 KB
testcase_42 AC 982 ms
132,444 KB
testcase_43 AC 152 ms
82,236 KB
testcase_44 AC 989 ms
132,584 KB
testcase_45 AC 1,070 ms
132,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():

    n = int(input())
    A = []
    B = []
    for i in range(n):
        a, b = map(int, input().split())
        A.append(a)
        B.append(b)

    INF = 10**18
    dp = [[INF]*n for i in range(1<<n)]
    for i in range(n):
        dp[1<<i][i] = 0
    for s in range(1, 1<<n):
        for j in range(n):
            if (s>>j)&1:
                continue
            ns = s|(1<<j)
            res = INF
            for i in range(n):
                if not ((s>>i)&1):
                    continue
                res = min(res, max(dp[s][i], B[i]-A[i]+A[j]))
            dp[ns][j] = min(dp[ns][j], res)
    ans = min(dp[-1])
    print(ans)

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