結果

問題 No.2918 Divide Applicants Fairly
ユーザー みうねみうね
提出日時 2024-09-20 20:14:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,466 ms / 2,000 ms
コード長 733 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 159,560 KB
最終ジャッジ日時 2024-10-07 21:06:30
合計ジャッジ時間 9,611 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,108 KB
testcase_01 AC 37 ms
53,984 KB
testcase_02 AC 37 ms
54,580 KB
testcase_03 AC 37 ms
54,864 KB
testcase_04 AC 37 ms
55,520 KB
testcase_05 AC 37 ms
55,152 KB
testcase_06 AC 41 ms
55,284 KB
testcase_07 AC 37 ms
54,760 KB
testcase_08 AC 37 ms
53,912 KB
testcase_09 AC 57 ms
73,252 KB
testcase_10 AC 39 ms
54,492 KB
testcase_11 AC 753 ms
114,352 KB
testcase_12 AC 64 ms
70,172 KB
testcase_13 AC 52 ms
64,984 KB
testcase_14 AC 42 ms
55,428 KB
testcase_15 AC 37 ms
54,676 KB
testcase_16 AC 40 ms
54,384 KB
testcase_17 AC 55 ms
69,844 KB
testcase_18 AC 761 ms
114,300 KB
testcase_19 AC 40 ms
54,184 KB
testcase_20 AC 389 ms
98,208 KB
testcase_21 AC 60 ms
70,024 KB
testcase_22 AC 42 ms
54,696 KB
testcase_23 AC 63 ms
72,304 KB
testcase_24 AC 41 ms
54,348 KB
testcase_25 AC 1,466 ms
159,560 KB
testcase_26 AC 39 ms
54,112 KB
testcase_27 AC 229 ms
87,456 KB
testcase_28 AC 41 ms
54,632 KB
testcase_29 AC 48 ms
64,216 KB
testcase_30 AC 38 ms
53,704 KB
testcase_31 AC 52 ms
65,748 KB
testcase_32 AC 37 ms
54,896 KB
testcase_33 AC 37 ms
55,204 KB
testcase_34 AC 37 ms
54,264 KB
testcase_35 AC 37 ms
54,168 KB
testcase_36 AC 193 ms
89,396 KB
testcase_37 AC 128 ms
81,676 KB
testcase_38 AC 98 ms
79,108 KB
testcase_39 AC 41 ms
55,180 KB
testcase_40 AC 76 ms
77,564 KB
testcase_41 AC 87 ms
79,188 KB
testcase_42 AC 109 ms
81,852 KB
testcase_43 AC 146 ms
86,948 KB
testcase_44 AC 239 ms
97,540 KB
testcase_45 AC 387 ms
116,944 KB
testcase_46 AC 43 ms
54,196 KB
testcase_47 AC 40 ms
55,276 KB
testcase_48 AC 61 ms
73,324 KB
testcase_49 AC 130 ms
81,732 KB
testcase_50 AC 39 ms
54,368 KB
testcase_51 AC 56 ms
71,984 KB
testcase_52 AC 101 ms
79,224 KB
testcase_53 AC 71 ms
76,984 KB
testcase_54 AC 70 ms
77,184 KB
testcase_55 AC 82 ms
77,744 KB
testcase_56 AC 83 ms
77,668 KB
testcase_57 AC 239 ms
87,496 KB
testcase_58 AC 83 ms
77,860 KB
testcase_59 AC 81 ms
77,960 KB
testcase_60 AC 52 ms
64,168 KB
testcase_61 AC 81 ms
77,792 KB
testcase_62 AC 61 ms
70,284 KB
testcase_63 AC 61 ms
70,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import factorial
from collections import deque

N = int(input())

if N > 25:
    print(0)
    exit()

rates = list(map(int, input().split()))
rate_sums = list(range(factorial(N) // factorial(N // 2) // factorial(N - N // 2)))
index = 0

stack = deque()
stack.append((0, 0, 0, -1))
while stack:
    bit, rate_sum, popcnt, k = stack.pop()
    if popcnt == N // 2:
        rate_sums[index] = rate_sum
        index += 1
    else:
        for i in range(k + 1, N - N // 2 + popcnt + 1):
            stack.append((bit | (1 << i), rate_sum + rates[i], popcnt + 1, i))

rate_sums.sort()
ans = 1 << 30
for i in range(len(rate_sums) - 1):
    tmp = abs(rate_sums[i] - rate_sums[i + 1])
    if ans > tmp:
        ans = tmp
print(ans)
0