結果

問題 No.2217 Suffix+
ユーザー タコイモタコイモ
提出日時 2023-02-17 21:32:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 186 ms / 2,000 ms
コード長 1,385 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 92,032 KB
最終ジャッジ日時 2024-07-19 12:37:21
合計ジャッジ時間 4,361 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,632 KB
testcase_01 AC 41 ms
53,760 KB
testcase_02 AC 40 ms
53,632 KB
testcase_03 AC 40 ms
53,632 KB
testcase_04 AC 42 ms
53,632 KB
testcase_05 AC 41 ms
54,016 KB
testcase_06 AC 40 ms
53,760 KB
testcase_07 AC 40 ms
53,376 KB
testcase_08 AC 40 ms
53,632 KB
testcase_09 AC 41 ms
53,632 KB
testcase_10 AC 41 ms
53,376 KB
testcase_11 AC 40 ms
53,632 KB
testcase_12 AC 41 ms
53,376 KB
testcase_13 AC 42 ms
53,376 KB
testcase_14 AC 56 ms
66,560 KB
testcase_15 AC 60 ms
66,816 KB
testcase_16 AC 63 ms
73,984 KB
testcase_17 AC 60 ms
70,272 KB
testcase_18 AC 58 ms
68,480 KB
testcase_19 AC 104 ms
86,272 KB
testcase_20 AC 107 ms
84,736 KB
testcase_21 AC 56 ms
63,232 KB
testcase_22 AC 97 ms
79,616 KB
testcase_23 AC 102 ms
82,944 KB
testcase_24 AC 87 ms
87,808 KB
testcase_25 AC 92 ms
87,552 KB
testcase_26 AC 89 ms
87,680 KB
testcase_27 AC 85 ms
87,808 KB
testcase_28 AC 90 ms
87,808 KB
testcase_29 AC 163 ms
91,904 KB
testcase_30 AC 166 ms
91,648 KB
testcase_31 AC 165 ms
91,648 KB
testcase_32 AC 160 ms
92,032 KB
testcase_33 AC 165 ms
91,776 KB
testcase_34 AC 87 ms
87,936 KB
testcase_35 AC 41 ms
53,632 KB
testcase_36 AC 186 ms
91,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#sys.setrecursionlimit(500000)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def TI(): return tuple(map(int,sys.stdin.readline().rstrip().split()))
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip())
#for i, pi in enumerate(p):
from collections import defaultdict,deque
import bisect
import itertools
dic = defaultdict(int)
d = deque()
YN = ['No','Yes']

N,K = MI()
A = LI()
#https://aotamasaki.hatenablog.com/entry/meguru_bisect
def is_ok(arg):
  count = 0
  plus = 0
  for i in range(1,N+1):
    ap = A[i-1]+plus
    if ap < arg:
      h = (arg-ap+i-1)//i
      count += h
      if count > K:
        return False
      plus += h*i
  if count <= K:
    return True
  else:
    return False
      
    

def meguru_bisect(ng, ok):
    '''
    初期値のng,okを受け取り,is_okを満たす最小(最大)のokを返す
    まずis_okを定義すべし
    ng ok は  とり得る最小の値-1 とり得る最大の値+1
    最大最小が逆の場合はよしなにひっくり返す
    '''
    while (abs(ok - ng) > 1):
        mid = (ok + ng) // 2
        if is_ok(mid):
            ok = mid
        else:
            ng = mid
    return ok
print(meguru_bisect(10**14+10**10,0))
0