結果

問題 No.771 しおり
ユーザー rlangevinrlangevin
提出日時 2023-02-02 08:58:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,616 ms / 2,000 ms
コード長 485 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 132,864 KB
最終ジャッジ日時 2024-07-01 23:46:03
合計ジャッジ時間 21,532 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,616 ms
132,608 KB
testcase_01 AC 209 ms
82,560 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 41 ms
51,712 KB
testcase_04 AC 41 ms
51,968 KB
testcase_05 AC 41 ms
52,224 KB
testcase_06 AC 40 ms
51,712 KB
testcase_07 AC 40 ms
52,224 KB
testcase_08 AC 67 ms
66,816 KB
testcase_09 AC 40 ms
51,968 KB
testcase_10 AC 40 ms
52,224 KB
testcase_11 AC 41 ms
52,224 KB
testcase_12 AC 41 ms
52,224 KB
testcase_13 AC 40 ms
52,352 KB
testcase_14 AC 65 ms
65,792 KB
testcase_15 AC 40 ms
51,840 KB
testcase_16 AC 47 ms
58,752 KB
testcase_17 AC 60 ms
64,128 KB
testcase_18 AC 40 ms
52,608 KB
testcase_19 AC 48 ms
58,752 KB
testcase_20 AC 41 ms
51,968 KB
testcase_21 AC 40 ms
51,840 KB
testcase_22 AC 47 ms
58,496 KB
testcase_23 AC 58 ms
63,104 KB
testcase_24 AC 60 ms
64,384 KB
testcase_25 AC 712 ms
103,936 KB
testcase_26 AC 82 ms
69,888 KB
testcase_27 AC 214 ms
82,432 KB
testcase_28 AC 483 ms
89,216 KB
testcase_29 AC 197 ms
82,432 KB
testcase_30 AC 1,574 ms
132,864 KB
testcase_31 AC 1,605 ms
132,480 KB
testcase_32 AC 104 ms
72,832 KB
testcase_33 AC 1,502 ms
132,736 KB
testcase_34 AC 1,522 ms
132,736 KB
testcase_35 AC 104 ms
73,216 KB
testcase_36 AC 71 ms
67,712 KB
testcase_37 AC 73 ms
68,224 KB
testcase_38 AC 103 ms
73,728 KB
testcase_39 AC 74 ms
68,608 KB
testcase_40 AC 737 ms
103,936 KB
testcase_41 AC 1,477 ms
132,736 KB
testcase_42 AC 1,482 ms
132,736 KB
testcase_43 AC 200 ms
82,432 KB
testcase_44 AC 1,552 ms
132,608 KB
testcase_45 AC 1,493 ms
132,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

N2 = 1 << N
inf = 10 ** 18
dp = [[inf] * N for i in range(N2)]
for i in range(N):
    dp[1 << i][i] = 0

for s in range(1, N2):
    for i in range(N):
        for j in range(N):
            if (s >> j) & 1 or (s >> i) & 1 == 0:
                continue
            ns = s | (1 << j)
            dp[ns][j] = min(dp[ns][j], max(dp[s][i], B[i] - A[i] + A[j]))
print(min(dp[-1]))
0