結果

問題 No.2217 Suffix+
ユーザー tnakao0123tnakao0123
提出日時 2023-04-23 16:46:21
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 781 bytes
コンパイル時間 402 ms
コンパイル使用メモリ 42,432 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-25 12:14:57
合計ジャッジ時間 3,161 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 6 ms
5,376 KB
testcase_15 AC 6 ms
5,376 KB
testcase_16 AC 10 ms
5,376 KB
testcase_17 AC 8 ms
5,376 KB
testcase_18 AC 8 ms
5,376 KB
testcase_19 AC 48 ms
5,376 KB
testcase_20 AC 45 ms
5,376 KB
testcase_21 AC 11 ms
5,376 KB
testcase_22 AC 48 ms
5,376 KB
testcase_23 AC 43 ms
5,376 KB
testcase_24 AC 19 ms
5,376 KB
testcase_25 AC 20 ms
5,376 KB
testcase_26 AC 20 ms
5,376 KB
testcase_27 AC 20 ms
5,376 KB
testcase_28 AC 20 ms
5,376 KB
testcase_29 AC 72 ms
5,376 KB
testcase_30 AC 71 ms
5,376 KB
testcase_31 AC 73 ms
5,376 KB
testcase_32 AC 69 ms
5,376 KB
testcase_33 AC 69 ms
5,376 KB
testcase_34 AC 21 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 95 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2217.cc:  No.2217 Suffix+ - yukicoder
 */

#include<cstdio>
#include<algorithm>
 
using namespace std;

/* constant */

const int MAX_N = 100000;

/* typedef */

typedef long long ll;

/* global variables */

ll as[MAX_N];

/* subroutines */

ll check(int n, ll x) {
  ll c = 0, s = 0;
  for (int i = 0; i < n; i++)
    if (x > as[i] + s) {
      ll d = (x - (as[i] + s) + i) / (i + 1);
      c += d;
      s += d * (i + 1);
    }
  return c;
}

/* main */

int main() {
  int n, k;
  scanf("%d%d", &n, &k);
  for (int i = 0; i < n; i++) scanf("%lld", as + i);

  ll x0 = 0, x1 = 200000000000000LL + 1;
  while (x0 + 1 < x1) {
    ll x = (x0 + x1) / 2;
    if (check(n, x) > k) x1 = x;
    else x0 = x;
  }

  printf("%lld\n", x0);
  return 0;
}
0