結果

問題 No.771 しおり
ユーザー ああいいああいい
提出日時 2022-05-18 10:12:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,174 ms / 2,000 ms
コード長 602 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 132,992 KB
最終ジャッジ日時 2024-07-22 07:30:13
合計ジャッジ時間 15,943 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,062 ms
132,756 KB
testcase_01 AC 154 ms
82,480 KB
testcase_02 AC 35 ms
53,320 KB
testcase_03 AC 37 ms
52,316 KB
testcase_04 AC 38 ms
52,808 KB
testcase_05 AC 37 ms
52,536 KB
testcase_06 AC 37 ms
52,900 KB
testcase_07 AC 39 ms
52,736 KB
testcase_08 AC 58 ms
68,656 KB
testcase_09 AC 38 ms
52,956 KB
testcase_10 AC 36 ms
52,504 KB
testcase_11 AC 37 ms
54,020 KB
testcase_12 AC 40 ms
52,468 KB
testcase_13 AC 39 ms
52,984 KB
testcase_14 AC 64 ms
68,108 KB
testcase_15 AC 39 ms
52,712 KB
testcase_16 AC 43 ms
58,596 KB
testcase_17 AC 56 ms
65,808 KB
testcase_18 AC 38 ms
52,960 KB
testcase_19 AC 43 ms
57,988 KB
testcase_20 AC 39 ms
52,792 KB
testcase_21 AC 38 ms
52,756 KB
testcase_22 AC 43 ms
59,436 KB
testcase_23 AC 49 ms
62,460 KB
testcase_24 AC 56 ms
65,784 KB
testcase_25 AC 483 ms
103,724 KB
testcase_26 AC 71 ms
71,528 KB
testcase_27 AC 156 ms
82,812 KB
testcase_28 AC 294 ms
89,916 KB
testcase_29 AC 166 ms
82,696 KB
testcase_30 AC 1,123 ms
132,832 KB
testcase_31 AC 1,138 ms
132,748 KB
testcase_32 AC 76 ms
72,048 KB
testcase_33 AC 1,129 ms
132,976 KB
testcase_34 AC 1,119 ms
132,784 KB
testcase_35 AC 77 ms
72,648 KB
testcase_36 AC 62 ms
68,516 KB
testcase_37 AC 68 ms
73,824 KB
testcase_38 AC 78 ms
73,696 KB
testcase_39 AC 65 ms
69,732 KB
testcase_40 AC 453 ms
103,936 KB
testcase_41 AC 1,174 ms
132,976 KB
testcase_42 AC 1,112 ms
132,696 KB
testcase_43 AC 158 ms
82,672 KB
testcase_44 AC 1,092 ms
132,992 KB
testcase_45 AC 1,038 ms
132,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
hon = []
for _ in range(N):
    a,b = map(int,input().split())
    hon.append((a,b))
inf = 10 ** 8

dp = [[inf] * N for _ in range(1 << N)]
for i in range(N):
    dp[1 << i][i] = 0
for bit in range(1,1 << N):
    for i in range(N):
        if bit >> i & 1:
            for j in range(N):
                maskj = 1 << j
                if bit & maskj == 0:
                    u = hon[i][1] - hon[i][0] + hon[j][0]
                    dp[bit | maskj][j] = min(dp[bit | maskj][j],max(dp[bit][i],u))
ans = inf
for i in range(N):
    if dp[-1][i] < ans:
        ans = dp[-1][i]
print(ans)
0