結果

問題 No.771 しおり
ユーザー mkawa2mkawa2
提出日時 2020-09-25 17:15:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,249 ms / 2,000 ms
コード長 1,194 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 81,584 KB
実行使用メモリ 133,268 KB
最終ジャッジ日時 2024-07-22 07:26:00
合計ジャッジ時間 17,570 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,146 ms
132,988 KB
testcase_01 AC 178 ms
82,560 KB
testcase_02 AC 46 ms
54,400 KB
testcase_03 AC 47 ms
54,528 KB
testcase_04 AC 48 ms
54,400 KB
testcase_05 AC 47 ms
54,656 KB
testcase_06 AC 45 ms
54,784 KB
testcase_07 AC 47 ms
55,040 KB
testcase_08 AC 75 ms
70,656 KB
testcase_09 AC 47 ms
54,400 KB
testcase_10 AC 47 ms
55,028 KB
testcase_11 AC 47 ms
54,272 KB
testcase_12 AC 48 ms
54,912 KB
testcase_13 AC 46 ms
54,528 KB
testcase_14 AC 79 ms
71,552 KB
testcase_15 AC 48 ms
54,880 KB
testcase_16 AC 53 ms
60,928 KB
testcase_17 AC 72 ms
68,992 KB
testcase_18 AC 47 ms
54,528 KB
testcase_19 AC 56 ms
60,672 KB
testcase_20 AC 47 ms
54,528 KB
testcase_21 AC 49 ms
54,784 KB
testcase_22 AC 53 ms
60,800 KB
testcase_23 AC 62 ms
64,256 KB
testcase_24 AC 74 ms
69,504 KB
testcase_25 AC 523 ms
104,088 KB
testcase_26 AC 90 ms
73,472 KB
testcase_27 AC 183 ms
82,648 KB
testcase_28 AC 370 ms
89,636 KB
testcase_29 AC 186 ms
82,744 KB
testcase_30 AC 1,249 ms
132,644 KB
testcase_31 AC 1,185 ms
132,624 KB
testcase_32 AC 92 ms
77,628 KB
testcase_33 AC 1,192 ms
132,876 KB
testcase_34 AC 1,165 ms
132,952 KB
testcase_35 AC 93 ms
77,644 KB
testcase_36 AC 69 ms
71,372 KB
testcase_37 AC 74 ms
72,680 KB
testcase_38 AC 93 ms
77,476 KB
testcase_39 AC 70 ms
71,580 KB
testcase_40 AC 500 ms
104,268 KB
testcase_41 AC 1,166 ms
133,072 KB
testcase_42 AC 1,152 ms
132,716 KB
testcase_43 AC 173 ms
82,748 KB
testcase_44 AC 1,150 ms
133,268 KB
testcase_45 AC 1,125 ms
132,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from operator import itemgetter
from itertools import *
from bisect import *
from collections import *
from heapq import *
import sys

sys.setrecursionlimit(10**6)

def II(): return int(sys.stdin.readline())
def MI(): return map(int, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def SI(): return sys.stdin.readline()[:-1]
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
int1 = lambda x: int(x)-1
def MI1(): return map(int1, sys.stdin.readline().split())
def LI1(): return list(map(int1, sys.stdin.readline().split()))
p2D = lambda x: print(*x, sep="\n")
dij = [(1, 0), (0, 1), (-1, 0), (0, -1)]

n=II()
inf=10**9
dp=[[inf]*n for _ in range(1<<n)]
ab=LLI(n)
for i in range(n):dp[1<<i][i]=0

def chmin(bit,i,val):
    if val<dp[bit][i]:dp[bit][i]=val

for bit in range(1<<n):
    for i in range(n):
        if bit>>i&1==0:continue
        pre=dp[bit][i]
        if pre==inf:continue
        pa,pb=ab[i]
        for ni,(a,b) in enumerate(ab):
            if bit>>ni&1:continue
            nbit=bit|1<<ni
            chmin(nbit,ni,max(pre,pb-pa+a))

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