結果

問題 No.771 しおり
ユーザー AEnAEn
提出日時 2022-06-21 00:33:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,702 ms / 2,000 ms
コード長 499 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 133,140 KB
最終ジャッジ日時 2024-07-22 07:32:38
合計ジャッジ時間 22,152 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,702 ms
133,072 KB
testcase_01 AC 216 ms
82,556 KB
testcase_02 AC 42 ms
51,952 KB
testcase_03 AC 42 ms
51,968 KB
testcase_04 AC 42 ms
51,712 KB
testcase_05 AC 42 ms
52,352 KB
testcase_06 AC 41 ms
52,352 KB
testcase_07 AC 41 ms
52,224 KB
testcase_08 AC 84 ms
72,064 KB
testcase_09 AC 41 ms
52,480 KB
testcase_10 AC 41 ms
51,968 KB
testcase_11 AC 41 ms
52,124 KB
testcase_12 AC 42 ms
52,012 KB
testcase_13 AC 42 ms
52,352 KB
testcase_14 AC 86 ms
72,832 KB
testcase_15 AC 46 ms
51,840 KB
testcase_16 AC 51 ms
58,752 KB
testcase_17 AC 67 ms
66,292 KB
testcase_18 AC 42 ms
52,224 KB
testcase_19 AC 47 ms
58,368 KB
testcase_20 AC 42 ms
52,080 KB
testcase_21 AC 42 ms
51,840 KB
testcase_22 AC 47 ms
58,240 KB
testcase_23 AC 58 ms
61,184 KB
testcase_24 AC 70 ms
67,456 KB
testcase_25 AC 744 ms
104,072 KB
testcase_26 AC 105 ms
77,184 KB
testcase_27 AC 212 ms
82,288 KB
testcase_28 AC 395 ms
89,728 KB
testcase_29 AC 217 ms
82,444 KB
testcase_30 AC 1,555 ms
132,996 KB
testcase_31 AC 1,597 ms
133,140 KB
testcase_32 AC 113 ms
77,792 KB
testcase_33 AC 1,597 ms
133,004 KB
testcase_34 AC 1,534 ms
132,952 KB
testcase_35 AC 117 ms
77,696 KB
testcase_36 AC 99 ms
76,544 KB
testcase_37 AC 91 ms
74,240 KB
testcase_38 AC 114 ms
77,636 KB
testcase_39 AC 89 ms
73,856 KB
testcase_40 AC 635 ms
103,780 KB
testcase_41 AC 1,626 ms
132,804 KB
testcase_42 AC 1,515 ms
132,964 KB
testcase_43 AC 212 ms
82,368 KB
testcase_44 AC 1,551 ms
133,040 KB
testcase_45 AC 1,536 ms
132,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
c=[]
for i in range(N):
    l,r=map(int,input().split())
    c.append([l,r-l])
dp=[[0]*N for _ in range(1<<N)]
for i in range(1,1<<N):
    for j in range(N):
        if not i&(1<<j):continue
        for k in range(N):
            kk=1<<k
            cc=c[j][1]+c[k][0]
            if j==k or i&(1<<k):continue
            if dp[i^kk][k]==0:
                dp[i^kk][k]=max(dp[i][j],cc)
            else:
                dp[i^kk][k]=min(dp[i^kk][k],max(dp[i][j],cc))
print(min(dp[-1]))
0