結果

問題 No.771 しおり
ユーザー tobusakanatobusakana
提出日時 2022-10-23 16:00:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,280 ms / 2,000 ms
コード長 1,072 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 132,920 KB
最終ジャッジ日時 2024-07-22 07:32:58
合計ジャッジ時間 17,382 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,180 ms
132,608 KB
testcase_01 AC 175 ms
82,156 KB
testcase_02 AC 42 ms
51,840 KB
testcase_03 AC 42 ms
52,096 KB
testcase_04 AC 42 ms
51,712 KB
testcase_05 AC 42 ms
52,304 KB
testcase_06 AC 42 ms
52,096 KB
testcase_07 AC 43 ms
52,096 KB
testcase_08 AC 68 ms
66,048 KB
testcase_09 AC 42 ms
51,840 KB
testcase_10 AC 41 ms
52,352 KB
testcase_11 AC 41 ms
51,968 KB
testcase_12 AC 41 ms
52,096 KB
testcase_13 AC 42 ms
51,712 KB
testcase_14 AC 71 ms
67,200 KB
testcase_15 AC 41 ms
52,352 KB
testcase_16 AC 46 ms
57,856 KB
testcase_17 AC 65 ms
65,152 KB
testcase_18 AC 42 ms
51,968 KB
testcase_19 AC 47 ms
57,984 KB
testcase_20 AC 42 ms
51,840 KB
testcase_21 AC 45 ms
52,096 KB
testcase_22 AC 53 ms
57,856 KB
testcase_23 AC 55 ms
61,184 KB
testcase_24 AC 64 ms
64,768 KB
testcase_25 AC 507 ms
103,680 KB
testcase_26 AC 83 ms
70,528 KB
testcase_27 AC 176 ms
82,096 KB
testcase_28 AC 327 ms
89,364 KB
testcase_29 AC 186 ms
82,456 KB
testcase_30 AC 1,239 ms
132,920 KB
testcase_31 AC 1,255 ms
132,488 KB
testcase_32 AC 90 ms
71,168 KB
testcase_33 AC 1,280 ms
132,624 KB
testcase_34 AC 1,244 ms
132,172 KB
testcase_35 AC 93 ms
71,632 KB
testcase_36 AC 74 ms
68,480 KB
testcase_37 AC 83 ms
72,064 KB
testcase_38 AC 89 ms
71,680 KB
testcase_39 AC 77 ms
68,736 KB
testcase_40 AC 465 ms
103,808 KB
testcase_41 AC 1,249 ms
132,248 KB
testcase_42 AC 1,230 ms
132,608 KB
testcase_43 AC 177 ms
82,232 KB
testcase_44 AC 1,219 ms
132,368 KB
testcase_45 AC 1,165 ms
132,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline
N = int(readline())
A = [0] * N
B = [0] * N
for i in range(N):
  A[i], B[i] = map(int,readline().split())

# dp[S][v] = 並べた本の集合がSで、一番右にある本がvのときの醜さ

INF = 1 << 60
dp = [[INF] * N for i in range(1 << N)]

# まず最初の一冊を選ぶ
for i in range(N):
  dp[1 << i][i] = 0 # まだ醜さが定義されていない状態
  
for status in range(1, 1 << N): # 0の状態は考えない
  for v in range(N): # 最後の本
    if (status >> v) & 1 == 0:
      continue
    for target in range(N): # 次に置く本
      if (status >> target) & 1:
        continue # 既に置いてる
      # 本の厚さBi、表紙からの厚さAi
      # 今置かれている本に残っているしおりからの間隔はB[v] - A[v]
      # 次に置く本のしおりまでの間隔はA[target]
      gap = max(dp[status][v], B[v] - A[v] + A[target])
      next_status = status | (1 << target)
      if dp[next_status][target] > gap:
        dp[next_status][target] = gap

print(min(dp[-1]))
0