結果

問題 No.2890 Chiffon
ユーザー haihamabossuhaihamabossu
提出日時 2024-09-13 22:53:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,709 bytes
コンパイル時間 2,260 ms
コンパイル使用メモリ 204,688 KB
実行使用メモリ 14,924 KB
最終ジャッジ日時 2024-09-13 22:53:55
合計ジャッジ時間 5,132 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 WA -
testcase_15 AC 2 ms
6,944 KB
testcase_16 WA -
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 WA -
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 64 ms
14,924 KB
testcase_23 WA -
testcase_24 AC 4 ms
6,944 KB
testcase_25 AC 5 ms
9,852 KB
testcase_26 WA -
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 3 ms
6,940 KB
testcase_29 WA -
testcase_30 AC 7 ms
10,764 KB
testcase_31 AC 7 ms
9,812 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 30 ms
12,660 KB
testcase_34 AC 30 ms
12,452 KB
testcase_35 AC 30 ms
12,560 KB
testcase_36 AC 30 ms
12,516 KB
testcase_37 AC 30 ms
12,584 KB
testcase_38 AC 30 ms
12,512 KB
testcase_39 AC 30 ms
12,448 KB
testcase_40 AC 30 ms
12,556 KB
testcase_41 AC 30 ms
12,452 KB
testcase_42 AC 30 ms
12,568 KB
testcase_43 AC 31 ms
12,552 KB
testcase_44 AC 31 ms
12,544 KB
testcase_45 AC 31 ms
12,560 KB
testcase_46 AC 31 ms
12,592 KB
testcase_47 AC 30 ms
12,632 KB
testcase_48 AC 31 ms
12,552 KB
testcase_49 AC 30 ms
12,580 KB
testcase_50 AC 31 ms
12,596 KB
testcase_51 AC 30 ms
12,592 KB
testcase_52 AC 31 ms
12,588 KB
testcase_53 AC 87 ms
11,092 KB
testcase_54 AC 22 ms
12,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)

void solve() {
  ll n, k;
  cin >> n >> k;
  vector<ll> a(k);
  rep(i, k) cin >> a[i];
  {
    vector<ll> na(k);
    ll min_d = 1e18, min_i = -1;
    rep(i, k) {
      ll d = a[(i + 1) % k] - a[i];
      if (i == k - 1)
        d += n * 2;
      if (d < min_d) {
        min_d = d;
        min_i = i;
      }
    }
    ll x = a[min_i] - 1;
    rep(i, k) {
      ll j = (i + min_i) % k;
      na[i] = a[j] - x;
      if (j < min_i)
        na[i] += n * 2;
    }
    swap(a, na);
  }
  vector<ll> sum(n * 2 + 10, 0);
  {
    ll j = 0;
    rep(i, n * 2 + 5) {
      sum[i + 1] = sum[i];
      if (j < k && a[j] == i + 1) {
        sum[i + 1]++;
        j++;
      }
    }
  }
  ll ans = -1;
  for (ll s = 2; s < a[1]; s += 2) {
    ll L = 2, R = n * 2 / k + 2;
    while (L + 2 < R) {
      ll w = (L + R) / 2, now = s;
      bool ok = true;
      rep(i, k) {
        ll nex;
        if (i < k - 1) {
          nex = max(now + w, a[i + 1] + 1);
        } else {
          nex = max(now + w, a[0] + 1 + n * 2);
        }
        nex %= n * 2;
        ll cnt = 0;
        if (now < nex) {
          cnt += sum[nex] - sum[now];
        } else {
          cnt += sum[n * 2 + 1] - sum[now];
          cnt += sum[nex];
        }
        ok &= cnt == 1;
        if (!ok)
          break;
        now = nex;
      }
      if (ok) {
        L = w;
      } else {
        R = w;
      }
    }
    ans = max(ans, L);
  }
  cout << ans << '\n';
}

int main() {
  std::cin.tie(nullptr);
  std::ios_base::sync_with_stdio(false);
  int T = 1;
  for (int t = 0; t < T; t++) {
    solve();
  }
  return 0;
}
0