結果

問題 No.771 しおり
ユーザー tipstar0125tipstar0125
提出日時 2024-01-31 16:56:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,081 ms / 2,000 ms
コード長 525 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 132,352 KB
最終ジャッジ日時 2024-09-28 10:23:18
合計ジャッジ時間 15,803 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,019 ms
132,352 KB
testcase_01 AC 168 ms
82,816 KB
testcase_02 AC 39 ms
51,584 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 AC 39 ms
51,840 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 39 ms
51,456 KB
testcase_07 AC 39 ms
51,584 KB
testcase_08 AC 72 ms
68,608 KB
testcase_09 AC 40 ms
51,712 KB
testcase_10 AC 39 ms
51,712 KB
testcase_11 AC 39 ms
51,584 KB
testcase_12 AC 39 ms
52,096 KB
testcase_13 AC 38 ms
52,224 KB
testcase_14 AC 69 ms
68,096 KB
testcase_15 AC 39 ms
51,712 KB
testcase_16 AC 46 ms
59,008 KB
testcase_17 AC 63 ms
65,920 KB
testcase_18 AC 39 ms
51,968 KB
testcase_19 AC 46 ms
58,880 KB
testcase_20 AC 38 ms
52,096 KB
testcase_21 AC 39 ms
51,840 KB
testcase_22 AC 47 ms
59,008 KB
testcase_23 AC 55 ms
62,592 KB
testcase_24 AC 64 ms
65,920 KB
testcase_25 AC 585 ms
103,424 KB
testcase_26 AC 91 ms
76,288 KB
testcase_27 AC 171 ms
82,176 KB
testcase_28 AC 347 ms
89,088 KB
testcase_29 AC 173 ms
82,176 KB
testcase_30 AC 1,081 ms
131,840 KB
testcase_31 AC 1,080 ms
132,096 KB
testcase_32 AC 95 ms
77,184 KB
testcase_33 AC 1,027 ms
131,840 KB
testcase_34 AC 1,012 ms
131,968 KB
testcase_35 AC 97 ms
77,440 KB
testcase_36 AC 76 ms
70,528 KB
testcase_37 AC 79 ms
70,784 KB
testcase_38 AC 96 ms
77,312 KB
testcase_39 AC 78 ms
70,784 KB
testcase_40 AC 571 ms
103,424 KB
testcase_41 AC 1,077 ms
132,096 KB
testcase_42 AC 1,000 ms
132,224 KB
testcase_43 AC 173 ms
82,048 KB
testcase_44 AC 1,020 ms
132,352 KB
testcase_45 AC 950 ms
132,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
LR=[]
for _ in range(N):
    a,b=map(int,input().split())
    LR.append((a,b-a))
MAX=1<<N
INF=int(1e18)
dp=[[INF for _ in range(N)] for _ in range(MAX)]
for i in range(N):dp[1<<i][i]=0
for s in range(1,MAX):
    for frm in range(N):
        if s&(1<<frm)==0:continue
        for to in range(N):
            if s&(1<<to)==0:continue
            bs=s^(1<<to)
            _,r=LR[frm]
            l,_=LR[to]
            cost=max(dp[bs][frm],l+r)
            dp[s][to]=min(dp[s][to],cost)
ans=min(dp[-1])
print(ans)
0