結果

問題 No.2890 Chiffon
ユーザー tnakao0123tnakao0123
提出日時 2024-09-15 15:40:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,160 bytes
コンパイル時間 597 ms
コンパイル使用メモリ 44,668 KB
実行使用メモリ 7,112 KB
最終ジャッジ日時 2024-09-15 15:40:39
合計ジャッジ時間 4,803 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 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 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 WA -
testcase_09 WA -
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 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 WA -
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 60 ms
7,112 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 26 ms
5,376 KB
testcase_34 AC 25 ms
5,376 KB
testcase_35 AC 25 ms
5,376 KB
testcase_36 AC 25 ms
5,376 KB
testcase_37 AC 26 ms
5,376 KB
testcase_38 AC 26 ms
5,376 KB
testcase_39 AC 26 ms
5,376 KB
testcase_40 AC 25 ms
5,376 KB
testcase_41 AC 25 ms
5,376 KB
testcase_42 AC 26 ms
5,376 KB
testcase_43 AC 25 ms
5,376 KB
testcase_44 AC 25 ms
5,376 KB
testcase_45 AC 26 ms
5,376 KB
testcase_46 AC 26 ms
5,376 KB
testcase_47 AC 25 ms
5,376 KB
testcase_48 AC 25 ms
5,376 KB
testcase_49 AC 26 ms
5,376 KB
testcase_50 AC 26 ms
5,376 KB
testcase_51 AC 25 ms
5,376 KB
testcase_52 AC 25 ms
5,376 KB
testcase_53 AC 2 ms
5,376 KB
testcase_54 AC 17 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2890.cc:  No.2890 Chiffon - yukicoder
 */

#include<cstdio>
#include<algorithm>

using namespace std;

/* constant */

const int MAX_K = 500000;
const int MAX_K2 = MAX_K * 2;

/* typedef */

/* global variables */

int as[MAX_K2 + 1];

/* subroutines */

bool check(int k, int mini, int w) {
  for (int st = as[mini] + 1; st <= as[mini + 1]; st++) {
    bool ok = true;
    int x = st;
    for (int i = mini + 1; ok && i <= mini + k; i++) {
      x = max(x + w, as[i] + 1);
      ok = (x <= as[i + 1]);
    }
    if (ok) return true;
  }
  return false;
}

/* main */

int main() {
  int n, k;
  scanf("%d%d", &n, &k);
  int k2 = k * 2;
  for (int i = 0; i < k; i++) {
    scanf("%d", as + i);
    as[i] /= 2;
    as[k + i] = as[i] + n;
  }
  as[k2] = as[k] + n;

  int mind = as[1] - as[0], mini = 0;
  for (int i = 1; i < k; i++)
    if (mind > as[i + 1] - as[i])
      mind = as[i + 1] - as[i], mini = i;
  //printf(" mind=%d, mini=%d\n", mind, mini);

  int w0 = 1, w1 = n;
  while (w0 + 1 < w1) {
    int w = (w0 + w1) / 2;
    if (check(k, mini, w)) w0 = w;
    else w1 = w;
  }

  printf("%d\n", w0 * 2);
  
  return 0;
}
0