結果

問題 No.771 しおり
ユーザー mkawa2mkawa2
提出日時 2022-03-08 14:04:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,708 ms / 2,000 ms
コード長 1,155 bytes
コンパイル時間 539 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 112,968 KB
最終ジャッジ日時 2024-07-23 13:44:38
合計ジャッジ時間 22,548 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,472 ms
112,728 KB
testcase_01 AC 207 ms
79,636 KB
testcase_02 AC 37 ms
53,200 KB
testcase_03 AC 39 ms
52,736 KB
testcase_04 AC 41 ms
52,544 KB
testcase_05 AC 39 ms
53,544 KB
testcase_06 AC 36 ms
53,424 KB
testcase_07 AC 37 ms
53,124 KB
testcase_08 AC 59 ms
66,876 KB
testcase_09 AC 37 ms
52,628 KB
testcase_10 AC 36 ms
52,760 KB
testcase_11 AC 38 ms
54,176 KB
testcase_12 AC 38 ms
53,808 KB
testcase_13 AC 39 ms
53,484 KB
testcase_14 AC 71 ms
70,140 KB
testcase_15 AC 36 ms
52,760 KB
testcase_16 AC 44 ms
60,540 KB
testcase_17 AC 62 ms
67,928 KB
testcase_18 AC 37 ms
52,824 KB
testcase_19 AC 44 ms
60,472 KB
testcase_20 AC 37 ms
52,800 KB
testcase_21 AC 39 ms
52,616 KB
testcase_22 AC 43 ms
60,592 KB
testcase_23 AC 53 ms
66,320 KB
testcase_24 AC 58 ms
67,636 KB
testcase_25 AC 796 ms
93,148 KB
testcase_26 AC 74 ms
70,128 KB
testcase_27 AC 212 ms
79,464 KB
testcase_28 AC 510 ms
84,084 KB
testcase_29 AC 212 ms
80,040 KB
testcase_30 AC 1,669 ms
112,720 KB
testcase_31 AC 1,708 ms
112,576 KB
testcase_32 AC 101 ms
74,188 KB
testcase_33 AC 1,678 ms
112,580 KB
testcase_34 AC 1,628 ms
112,932 KB
testcase_35 AC 103 ms
74,356 KB
testcase_36 AC 64 ms
68,000 KB
testcase_37 AC 62 ms
68,064 KB
testcase_38 AC 107 ms
76,644 KB
testcase_39 AC 63 ms
68,524 KB
testcase_40 AC 760 ms
93,104 KB
testcase_41 AC 1,658 ms
112,620 KB
testcase_42 AC 1,643 ms
112,968 KB
testcase_43 AC 213 ms
79,516 KB
testcase_44 AC 1,648 ms
112,624 KB
testcase_45 AC 1,492 ms
112,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = (1 << 63)-1
# inf = (1 << 31)-1
# md = 10**9+7
md = 998244353

n = II()
ab = LLI(n)

dp = [[inf]*(1 << n) for _ in range(n)]
for i in range(n): dp[i][1 << i] = 0

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

for s in range(1, 1 << n):
    for i, (ai, bi) in enumerate(ab):
        pre = dp[i][s]
        for j, (aj, bj) in enumerate(ab):
            if s >> j & 1: continue
            chmin(j, s | 1 << j, max(pre, bi+aj-ai))

ans = min(dp[i][-1] for i in range(n))
print(ans)
0