結果

問題 No.771 しおり
ユーザー mkawa2mkawa2
提出日時 2022-03-08 16:21:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,922 ms / 2,000 ms
コード長 1,317 bytes
コンパイル時間 386 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 112,912 KB
最終ジャッジ日時 2024-07-23 16:21:39
合計ジャッジ時間 25,115 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,779 ms
112,892 KB
testcase_01 AC 231 ms
79,616 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 39 ms
52,352 KB
testcase_05 AC 38 ms
52,608 KB
testcase_06 AC 35 ms
52,352 KB
testcase_07 AC 38 ms
52,864 KB
testcase_08 AC 60 ms
68,608 KB
testcase_09 AC 37 ms
52,224 KB
testcase_10 AC 38 ms
52,352 KB
testcase_11 AC 37 ms
51,968 KB
testcase_12 AC 37 ms
52,352 KB
testcase_13 AC 37 ms
52,608 KB
testcase_14 AC 62 ms
72,576 KB
testcase_15 AC 38 ms
52,864 KB
testcase_16 AC 45 ms
59,648 KB
testcase_17 AC 56 ms
65,536 KB
testcase_18 AC 38 ms
52,864 KB
testcase_19 AC 46 ms
59,648 KB
testcase_20 AC 39 ms
52,260 KB
testcase_21 AC 38 ms
52,480 KB
testcase_22 AC 45 ms
59,776 KB
testcase_23 AC 54 ms
64,000 KB
testcase_24 AC 58 ms
66,304 KB
testcase_25 AC 891 ms
93,056 KB
testcase_26 AC 78 ms
75,764 KB
testcase_27 AC 230 ms
80,020 KB
testcase_28 AC 591 ms
84,096 KB
testcase_29 AC 229 ms
79,564 KB
testcase_30 AC 1,836 ms
112,408 KB
testcase_31 AC 1,922 ms
112,912 KB
testcase_32 AC 109 ms
76,568 KB
testcase_33 AC 1,868 ms
112,648 KB
testcase_34 AC 1,824 ms
112,660 KB
testcase_35 AC 109 ms
76,256 KB
testcase_36 AC 67 ms
73,900 KB
testcase_37 AC 67 ms
74,368 KB
testcase_38 AC 106 ms
76,636 KB
testcase_39 AC 65 ms
73,088 KB
testcase_40 AC 853 ms
93,568 KB
testcase_41 AC 1,890 ms
112,792 KB
testcase_42 AC 1,795 ms
112,288 KB
testcase_43 AC 231 ms
79,556 KB
testcase_44 AC 1,873 ms
112,768 KB
testcase_45 AC 1,777 ms
112,844 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

def main():
    n = II()
    ab = LLI(n)

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

    ans = inf
    for s in range(1, 1 << n):
        for i, (ai, bi) in enumerate(ab):
            pre = dp[s*n+i]
            for j, (aj, bj) in enumerate(ab):
                if s >> j & 1: continue
                ns = s | 1 << j
                nv = bi-ai+aj
                if pre > nv: nv = pre
                if ns+1 == 1 << n:
                    if nv < ans: ans = nv
                else:
                    if nv < dp[ns*n+j]: dp[ns*n+j] = nv

    print(ans)

main()
0