結果

問題 No.771 しおり
ユーザー vwxyzvwxyz
提出日時 2022-04-30 07:10:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,577 ms / 2,000 ms
コード長 505 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 132,924 KB
最終ジャッジ日時 2024-07-22 07:31:02
合計ジャッジ時間 20,250 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,425 ms
132,188 KB
testcase_01 AC 192 ms
82,440 KB
testcase_02 AC 39 ms
53,156 KB
testcase_03 AC 39 ms
52,488 KB
testcase_04 AC 38 ms
52,236 KB
testcase_05 AC 39 ms
52,744 KB
testcase_06 AC 39 ms
52,836 KB
testcase_07 AC 39 ms
53,028 KB
testcase_08 AC 62 ms
67,856 KB
testcase_09 AC 38 ms
51,748 KB
testcase_10 AC 39 ms
53,200 KB
testcase_11 AC 39 ms
52,656 KB
testcase_12 AC 38 ms
52,992 KB
testcase_13 AC 38 ms
52,708 KB
testcase_14 AC 57 ms
67,620 KB
testcase_15 AC 37 ms
52,752 KB
testcase_16 AC 44 ms
59,836 KB
testcase_17 AC 53 ms
65,520 KB
testcase_18 AC 38 ms
52,596 KB
testcase_19 AC 43 ms
60,180 KB
testcase_20 AC 38 ms
52,284 KB
testcase_21 AC 38 ms
52,344 KB
testcase_22 AC 45 ms
59,328 KB
testcase_23 AC 52 ms
64,432 KB
testcase_24 AC 57 ms
66,524 KB
testcase_25 AC 682 ms
103,384 KB
testcase_26 AC 70 ms
71,772 KB
testcase_27 AC 198 ms
82,456 KB
testcase_28 AC 468 ms
89,420 KB
testcase_29 AC 189 ms
82,488 KB
testcase_30 AC 1,376 ms
132,812 KB
testcase_31 AC 1,577 ms
132,408 KB
testcase_32 AC 87 ms
72,912 KB
testcase_33 AC 1,541 ms
132,228 KB
testcase_34 AC 1,572 ms
132,520 KB
testcase_35 AC 90 ms
74,296 KB
testcase_36 AC 65 ms
68,968 KB
testcase_37 AC 65 ms
70,076 KB
testcase_38 AC 93 ms
73,800 KB
testcase_39 AC 67 ms
69,480 KB
testcase_40 AC 695 ms
103,808 KB
testcase_41 AC 1,388 ms
132,748 KB
testcase_42 AC 1,511 ms
132,532 KB
testcase_43 AC 190 ms
82,688 KB
testcase_44 AC 1,515 ms
132,924 KB
testcase_45 AC 1,422 ms
132,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline

N=int(readline())
A,B=[],[]
for _ in range(N):
    a,b=map(int,readline().split())
    b-=a
    A.append(a)
    B.append(b)
inf=1<<30
dp=[[inf]*N for bit in range(1<<N)]
for i in range(N):
    dp[1<<i][i]=0
for bit in range(1<<N):
    for i in range(N):
        for j in range(N):
            if i==j:
                continue
            if bit&1<<i and bit&1<<j:
                dp[bit][i]=min(dp[bit][i],max(dp[bit^1<<i][j],B[j]+A[i]))
ans=min(dp[-1])
print(ans)
0