結果

問題 No.2221 Set X
ユーザー chineristACchineristAC
提出日時 2023-02-17 22:24:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 289 ms / 2,000 ms
コード長 1,045 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 123,520 KB
最終ジャッジ日時 2024-07-19 13:33:06
合計ジャッジ時間 6,516 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
56,064 KB
testcase_01 AC 46 ms
56,064 KB
testcase_02 AC 43 ms
55,680 KB
testcase_03 AC 46 ms
55,900 KB
testcase_04 AC 46 ms
55,808 KB
testcase_05 AC 48 ms
55,808 KB
testcase_06 AC 46 ms
56,064 KB
testcase_07 AC 46 ms
55,936 KB
testcase_08 AC 48 ms
56,960 KB
testcase_09 AC 46 ms
56,064 KB
testcase_10 AC 56 ms
64,128 KB
testcase_11 AC 44 ms
56,832 KB
testcase_12 AC 44 ms
56,832 KB
testcase_13 AC 49 ms
56,832 KB
testcase_14 AC 55 ms
63,360 KB
testcase_15 AC 48 ms
57,088 KB
testcase_16 AC 117 ms
89,288 KB
testcase_17 AC 85 ms
79,744 KB
testcase_18 AC 126 ms
91,376 KB
testcase_19 AC 83 ms
79,436 KB
testcase_20 AC 107 ms
85,120 KB
testcase_21 AC 193 ms
99,072 KB
testcase_22 AC 233 ms
109,440 KB
testcase_23 AC 56 ms
72,704 KB
testcase_24 AC 183 ms
98,668 KB
testcase_25 AC 134 ms
87,972 KB
testcase_26 AC 127 ms
123,520 KB
testcase_27 AC 128 ms
122,588 KB
testcase_28 AC 128 ms
122,624 KB
testcase_29 AC 135 ms
122,496 KB
testcase_30 AC 134 ms
122,196 KB
testcase_31 AC 143 ms
122,680 KB
testcase_32 AC 193 ms
122,880 KB
testcase_33 AC 289 ms
122,636 KB
testcase_34 AC 257 ms
122,496 KB
testcase_35 AC 239 ms
122,544 KB
testcase_36 AC 135 ms
122,584 KB
testcase_37 AC 136 ms
122,732 KB
testcase_38 AC 137 ms
122,704 KB
testcase_39 AC 195 ms
118,636 KB
testcase_40 AC 206 ms
118,016 KB
testcase_41 AC 191 ms
122,508 KB
testcase_42 AC 178 ms
122,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict
from heapq import heapify,heappop,heappush
from itertools import permutations
from math import gcd,log

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

N = int(input())
A = li()


arg_x = 1
min_val = 2*N

plus = set([i for i in range(N)])
minus = set([i for i in range(N)])
diff = [(A[i+1]-A[i],i) for i in range(N-1)]
diff.sort(reverse=True)
for x in range(1,2*N+1):
    """
    種類数は [2N/(x+1)] 以下
    → A_i-A_{i-1} >= x が成り立つiは [2N/(x+1)]個以下
    """
    while diff and diff[-1][0] <= x:
        d,i = diff.pop()
        plus.remove(i)
        minus.remove(i+1)
    #print(x,plus,minus)
    if len(plus) * (x+1) < min_val:
        tmp = 0
        for i in plus:
            tmp += A[i]//x
        for i in minus:
            tmp -= A[i]//x
        tmp += len(plus)
        tmp *= (x+1)
        if tmp < min_val:
            arg_x,min_val = x,tmp


print(arg_x)
print(min_val)
        
0