結果

問題 No.771 しおり
ユーザー roarisroaris
提出日時 2019-08-19 16:11:45
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 561 bytes
コンパイル時間 453 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 132,480 KB
最終ジャッジ日時 2024-07-26 17:56:13
合計ジャッジ時間 26,300 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,885 ms
132,344 KB
testcase_01 AC 225 ms
82,432 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 41 ms
51,840 KB
testcase_04 AC 40 ms
52,096 KB
testcase_05 AC 42 ms
52,608 KB
testcase_06 AC 40 ms
52,224 KB
testcase_07 AC 40 ms
52,096 KB
testcase_08 AC 63 ms
66,432 KB
testcase_09 AC 41 ms
52,352 KB
testcase_10 AC 40 ms
52,096 KB
testcase_11 AC 41 ms
52,224 KB
testcase_12 AC 42 ms
52,096 KB
testcase_13 AC 42 ms
52,224 KB
testcase_14 AC 61 ms
65,920 KB
testcase_15 AC 41 ms
51,968 KB
testcase_16 AC 51 ms
61,056 KB
testcase_17 AC 58 ms
65,408 KB
testcase_18 AC 41 ms
52,224 KB
testcase_19 AC 51 ms
60,800 KB
testcase_20 AC 41 ms
52,224 KB
testcase_21 AC 40 ms
52,480 KB
testcase_22 AC 52 ms
61,056 KB
testcase_23 AC 59 ms
65,536 KB
testcase_24 AC 60 ms
64,256 KB
testcase_25 AC 839 ms
103,296 KB
testcase_26 AC 78 ms
72,064 KB
testcase_27 AC 267 ms
82,176 KB
testcase_28 AC 521 ms
89,216 KB
testcase_29 AC 221 ms
82,304 KB
testcase_30 AC 1,887 ms
132,352 KB
testcase_31 TLE -
testcase_32 AC 113 ms
77,628 KB
testcase_33 AC 1,709 ms
132,428 KB
testcase_34 TLE -
testcase_35 AC 108 ms
77,568 KB
testcase_36 AC 73 ms
69,376 KB
testcase_37 AC 70 ms
69,760 KB
testcase_38 AC 109 ms
77,568 KB
testcase_39 AC 71 ms
69,888 KB
testcase_40 AC 806 ms
103,680 KB
testcase_41 AC 1,794 ms
132,136 KB
testcase_42 TLE -
testcase_43 AC 222 ms
82,304 KB
testcase_44 AC 1,786 ms
132,088 KB
testcase_45 AC 1,907 ms
132,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
A, B = [], []

for _ in range(N):
    Ai, Bi = map(int, input().split())
    A.append(Ai)
    B.append(Bi)

dp = [[10 ** 18 for _ in range(N)] for _ in range(1 << N)]

for v in range(N):
    dp[(1 << N) - 1][v] = 0
    
for S in range((1 << N) - 2, -1, -1):
    for v in range(N):
        for u in range(N):
            if not S >> u & 1:
                dp[S][v] = min(dp[S][v], max(dp[S | 1 << u][u], B[v] - A[v] + A[u]))

ans = 10 ** 18

for i in range(N):
    ans = min(ans, dp[1 << i][i])

print(ans)
0