結果

問題 No.2221 Set X
ユーザー chineristACchineristAC
提出日時 2023-02-17 22:20:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,658 ms / 2,000 ms
コード長 1,242 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 111,692 KB
最終ジャッジ日時 2024-07-19 13:29:50
合計ジャッジ時間 31,706 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,808 KB
testcase_01 AC 42 ms
55,808 KB
testcase_02 AC 42 ms
55,552 KB
testcase_03 AC 41 ms
55,552 KB
testcase_04 AC 43 ms
55,936 KB
testcase_05 AC 44 ms
55,552 KB
testcase_06 AC 44 ms
55,680 KB
testcase_07 AC 44 ms
55,808 KB
testcase_08 AC 51 ms
64,128 KB
testcase_09 AC 44 ms
55,552 KB
testcase_10 AC 50 ms
64,128 KB
testcase_11 AC 48 ms
62,720 KB
testcase_12 AC 56 ms
62,976 KB
testcase_13 AC 50 ms
62,848 KB
testcase_14 AC 56 ms
65,536 KB
testcase_15 AC 51 ms
63,104 KB
testcase_16 AC 416 ms
89,856 KB
testcase_17 AC 163 ms
79,872 KB
testcase_18 AC 443 ms
91,776 KB
testcase_19 AC 139 ms
79,232 KB
testcase_20 AC 273 ms
84,608 KB
testcase_21 AC 664 ms
99,456 KB
testcase_22 AC 933 ms
108,032 KB
testcase_23 AC 81 ms
77,440 KB
testcase_24 AC 597 ms
98,816 KB
testcase_25 AC 348 ms
87,808 KB
testcase_26 AC 1,375 ms
106,368 KB
testcase_27 AC 1,379 ms
110,288 KB
testcase_28 AC 1,355 ms
110,284 KB
testcase_29 AC 1,516 ms
111,320 KB
testcase_30 AC 1,281 ms
110,892 KB
testcase_31 AC 1,350 ms
110,672 KB
testcase_32 AC 1,439 ms
111,316 KB
testcase_33 AC 1,617 ms
111,104 KB
testcase_34 AC 1,579 ms
111,692 KB
testcase_35 AC 1,658 ms
111,176 KB
testcase_36 AC 1,349 ms
110,792 KB
testcase_37 AC 1,336 ms
111,192 KB
testcase_38 AC 1,586 ms
111,064 KB
testcase_39 AC 1,254 ms
103,128 KB
testcase_40 AC 1,428 ms
107,292 KB
testcase_41 AC 1,551 ms
111,256 KB
testcase_42 AC 1,509 ms
110,908 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
B = int((2*N)**.5)
for x in range(1,B):
    res = 1
    for i in range(1,N):
        if A[i]//x != A[i-1]//x:
            res += 1
    if res * (x+1) < min_val:
        arg_x,min_val = x,res*(x+1)

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(B,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