結果

問題 No.771 しおり
ユーザー SI1000-githubSI1000-github
提出日時 2022-10-26 00:02:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,974 ms / 2,000 ms
コード長 1,002 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 81,948 KB
実行使用メモリ 180,992 KB
最終ジャッジ日時 2024-07-22 07:34:09
合計ジャッジ時間 24,998 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,974 ms
180,992 KB
testcase_01 AC 266 ms
83,840 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 39 ms
52,224 KB
testcase_05 AC 39 ms
52,480 KB
testcase_06 AC 39 ms
52,352 KB
testcase_07 AC 40 ms
52,224 KB
testcase_08 AC 95 ms
76,928 KB
testcase_09 AC 39 ms
51,968 KB
testcase_10 AC 40 ms
52,096 KB
testcase_11 AC 38 ms
51,840 KB
testcase_12 AC 39 ms
51,968 KB
testcase_13 AC 39 ms
52,480 KB
testcase_14 AC 97 ms
76,800 KB
testcase_15 AC 40 ms
51,968 KB
testcase_16 AC 46 ms
58,496 KB
testcase_17 AC 70 ms
69,120 KB
testcase_18 AC 39 ms
52,608 KB
testcase_19 AC 44 ms
58,752 KB
testcase_20 AC 39 ms
52,736 KB
testcase_21 AC 39 ms
52,480 KB
testcase_22 AC 45 ms
58,752 KB
testcase_23 AC 54 ms
63,360 KB
testcase_24 AC 68 ms
68,608 KB
testcase_25 AC 905 ms
127,616 KB
testcase_26 AC 105 ms
77,056 KB
testcase_27 AC 251 ms
84,480 KB
testcase_28 AC 479 ms
101,248 KB
testcase_29 AC 249 ms
83,840 KB
testcase_30 AC 1,810 ms
180,736 KB
testcase_31 AC 1,925 ms
180,864 KB
testcase_32 AC 126 ms
78,976 KB
testcase_33 AC 1,812 ms
180,480 KB
testcase_34 AC 1,818 ms
180,608 KB
testcase_35 AC 127 ms
78,720 KB
testcase_36 AC 96 ms
76,800 KB
testcase_37 AC 96 ms
77,056 KB
testcase_38 AC 121 ms
78,720 KB
testcase_39 AC 101 ms
77,440 KB
testcase_40 AC 880 ms
127,360 KB
testcase_41 AC 1,936 ms
180,736 KB
testcase_42 AC 1,704 ms
180,480 KB
testcase_43 AC 291 ms
83,948 KB
testcase_44 AC 1,728 ms
180,480 KB
testcase_45 AC 1,697 ms
180,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python
# -*- coding: utf-8 -*-

# import
from sys import stdin, setrecursionlimit
setrecursionlimit(10**8)

def int_map():
    return map(int,input().split())

def int_list():
    return list(map(int,input().split()))

def int_mtx(N):
    x = [list(map(int, stdin.readline().split())) for _ in range(N)]
    return x

def str_mtx(N):
    x = [list(stdin.readline()[:-1]) for _ in range(N)]
    return x

def print_space(l):
    return print(" ".join([str(x) for x in l]))



"""    main code    """

N = int(input())
AB = int_mtx(N)

dp = [[float("INF") for _ in range(N)] for _ in range(2**N)]
for u in range(N):
    dp[2**u][u] = 0

from itertools import product

for s in range(2**N):
    for u in range(N):
        if s>>u&1 == 1:
            for v in range(N):
                if s >> v & 1 == 0:
                    dp[s+2**v][v] = min(dp[s+2**v][v], max(dp[s][u], AB[v][0] + (AB[u][1]-AB[u][0])))


ans = float("INF")

for u in range(N):
    ans = min(ans, dp[2**N-1][u])

print(ans)
0