結果

問題 No.609 Noelちゃんと星々
ユーザー Mr.FukuMr.Fuku
提出日時 2018-08-04 18:52:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,118 ms / 2,000 ms
コード長 656 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,988 KB
最終ジャッジ日時 2024-09-19 17:54:01
合計ジャッジ時間 19,038 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 766 ms
19,108 KB
testcase_01 AC 430 ms
14,920 KB
testcase_02 AC 309 ms
13,680 KB
testcase_03 AC 377 ms
14,588 KB
testcase_04 AC 212 ms
12,672 KB
testcase_05 AC 1,041 ms
21,656 KB
testcase_06 AC 893 ms
19,588 KB
testcase_07 AC 518 ms
15,988 KB
testcase_08 AC 121 ms
11,904 KB
testcase_09 AC 332 ms
14,100 KB
testcase_10 AC 685 ms
17,312 KB
testcase_11 AC 627 ms
16,768 KB
testcase_12 AC 694 ms
18,432 KB
testcase_13 AC 163 ms
12,160 KB
testcase_14 AC 78 ms
11,392 KB
testcase_15 AC 880 ms
20,480 KB
testcase_16 AC 1,000 ms
21,988 KB
testcase_17 AC 780 ms
19,120 KB
testcase_18 AC 279 ms
13,516 KB
testcase_19 AC 897 ms
19,592 KB
testcase_20 AC 1,082 ms
21,700 KB
testcase_21 AC 1,093 ms
21,696 KB
testcase_22 AC 1,118 ms
21,700 KB
testcase_23 AC 1,056 ms
21,700 KB
testcase_24 AC 1,098 ms
21,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
num = list(map(int,input().split()))
max_n,min_n = num[0],num[0]
step = [[-1,1]]

def measure(index,limit):
    cost = 0
    for i in range(n):
        cost += abs(num[i]-index)
        if cost>limit:
            return float("inf")
    return cost

for i in range(n):
    if max_n<num[i]:
        max_n=num[i]
    elif min_n>num[i]:
        min_n=num[i]

x = 2
while x<max_n-min_n:
    step.insert(0,[-x,x])
    x *= 2

index = (max_n+min_n)//2
cost = measure(index,float("inf"))
for s in step:
    for i in s:
        c = measure(index+i,cost)
        if cost>c:
            index += i
            cost = c
            break

print(cost)
0