結果

問題 No.771 しおり
ユーザー 👑 KazunKazun
提出日時 2021-03-04 04:38:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,484 ms / 2,000 ms
コード長 581 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,636 KB
実行使用メモリ 180,616 KB
最終ジャッジ日時 2024-09-20 02:19:46
合計ジャッジ時間 18,767 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,344 ms
180,136 KB
testcase_01 AC 188 ms
87,824 KB
testcase_02 AC 38 ms
53,076 KB
testcase_03 AC 36 ms
53,104 KB
testcase_04 AC 39 ms
52,620 KB
testcase_05 AC 37 ms
53,252 KB
testcase_06 AC 38 ms
52,820 KB
testcase_07 AC 37 ms
52,424 KB
testcase_08 AC 70 ms
72,708 KB
testcase_09 AC 36 ms
52,700 KB
testcase_10 AC 35 ms
53,124 KB
testcase_11 AC 36 ms
52,064 KB
testcase_12 AC 37 ms
53,592 KB
testcase_13 AC 37 ms
52,764 KB
testcase_14 AC 71 ms
73,624 KB
testcase_15 AC 36 ms
53,212 KB
testcase_16 AC 40 ms
58,624 KB
testcase_17 AC 56 ms
66,192 KB
testcase_18 AC 36 ms
53,780 KB
testcase_19 AC 40 ms
59,356 KB
testcase_20 AC 36 ms
54,116 KB
testcase_21 AC 36 ms
52,588 KB
testcase_22 AC 40 ms
58,644 KB
testcase_23 AC 48 ms
63,024 KB
testcase_24 AC 56 ms
65,780 KB
testcase_25 AC 605 ms
127,256 KB
testcase_26 AC 93 ms
77,196 KB
testcase_27 AC 190 ms
88,312 KB
testcase_28 AC 372 ms
100,540 KB
testcase_29 AC 197 ms
87,884 KB
testcase_30 AC 1,262 ms
180,572 KB
testcase_31 AC 1,484 ms
180,616 KB
testcase_32 AC 97 ms
77,988 KB
testcase_33 AC 1,293 ms
180,496 KB
testcase_34 AC 1,293 ms
180,356 KB
testcase_35 AC 101 ms
77,972 KB
testcase_36 AC 87 ms
76,928 KB
testcase_37 AC 83 ms
76,776 KB
testcase_38 AC 100 ms
78,128 KB
testcase_39 AC 82 ms
77,004 KB
testcase_40 AC 600 ms
127,168 KB
testcase_41 AC 1,367 ms
180,380 KB
testcase_42 AC 1,239 ms
180,092 KB
testcase_43 AC 193 ms
88,048 KB
testcase_44 AC 1,269 ms
180,444 KB
testcase_45 AC 1,232 ms
180,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=[0]*N
B=[0]*N

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

Ugly=[[0]*N for _ in range(N)]
for i in range(N):
    for j in range(N):
        if i==j:
            continue
        Ugly[i][j]=(B[i]-A[i])+A[j]

inf=float("inf")
DP=[[inf]*N for _ in range(1<<N)]
for i in range(N):
    DP[1<<i][i]=0

for S in range(1,1<<N):
    E=DP[S]
    for u in range(N):
        if S&(1<<u)==0:
            continue

        for v in range(N):
            if S&(1<<v)==0:
                DP[S|(1<<v)][v]=min(DP[S|(1<<v)][v],max(E[u],Ugly[u][v]))

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