結果

問題 No.771 しおり
ユーザー vwxyzvwxyz
提出日時 2022-04-30 07:12:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 948 ms / 2,000 ms
コード長 620 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,792 KB
実行使用メモリ 134,088 KB
最終ジャッジ日時 2024-07-22 07:31:25
合計ジャッジ時間 13,983 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 808 ms
133,012 KB
testcase_01 AC 218 ms
84,200 KB
testcase_02 AC 40 ms
52,676 KB
testcase_03 AC 39 ms
52,128 KB
testcase_04 AC 40 ms
53,368 KB
testcase_05 AC 39 ms
52,320 KB
testcase_06 AC 40 ms
52,692 KB
testcase_07 AC 39 ms
53,328 KB
testcase_08 AC 76 ms
74,336 KB
testcase_09 AC 40 ms
52,484 KB
testcase_10 AC 40 ms
53,440 KB
testcase_11 AC 39 ms
52,768 KB
testcase_12 AC 39 ms
53,472 KB
testcase_13 AC 39 ms
52,532 KB
testcase_14 AC 100 ms
76,116 KB
testcase_15 AC 40 ms
52,196 KB
testcase_16 AC 40 ms
52,744 KB
testcase_17 AC 59 ms
65,728 KB
testcase_18 AC 39 ms
52,440 KB
testcase_19 AC 40 ms
52,876 KB
testcase_20 AC 37 ms
52,896 KB
testcase_21 AC 40 ms
52,744 KB
testcase_22 AC 41 ms
52,748 KB
testcase_23 AC 42 ms
53,524 KB
testcase_24 AC 55 ms
65,640 KB
testcase_25 AC 493 ms
104,776 KB
testcase_26 AC 119 ms
77,712 KB
testcase_27 AC 218 ms
83,208 KB
testcase_28 AC 339 ms
90,948 KB
testcase_29 AC 227 ms
83,908 KB
testcase_30 AC 886 ms
133,668 KB
testcase_31 AC 945 ms
133,640 KB
testcase_32 AC 126 ms
78,328 KB
testcase_33 AC 902 ms
134,088 KB
testcase_34 AC 944 ms
133,812 KB
testcase_35 AC 133 ms
78,336 KB
testcase_36 AC 111 ms
77,468 KB
testcase_37 AC 113 ms
77,204 KB
testcase_38 AC 133 ms
78,456 KB
testcase_39 AC 113 ms
77,080 KB
testcase_40 AC 444 ms
104,564 KB
testcase_41 AC 948 ms
133,700 KB
testcase_42 AC 852 ms
133,648 KB
testcase_43 AC 214 ms
83,344 KB
testcase_44 AC 857 ms
133,612 KB
testcase_45 AC 599 ms
133,312 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):
    lst=[i for i in range(N) if bit&1<<i]
    l=len(lst)
    for j in range(l):
        for i in range(j):
            x,y=lst[i],lst[j]
            if bit&1<<x and bit&1<<y:
                dp[bit][x]=min(dp[bit][x],max(dp[bit^1<<x][y],B[y]+A[x]))
                dp[bit][y]=min(dp[bit][y],max(dp[bit^1<<y][x],B[x]+A[y]))
ans=min(dp[-1])
print(ans)
0