結果

問題 No.1211 円環はお断り
ユーザー m_tsubasam_tsubasa
提出日時 2020-08-30 15:14:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,997 ms / 2,000 ms
コード長 1,106 bytes
コンパイル時間 2,537 ms
コンパイル使用メモリ 211,268 KB
実行使用メモリ 22,116 KB
最終ジャッジ日時 2024-11-15 08:45:07
合計ジャッジ時間 36,006 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 3 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 913 ms
13,056 KB
testcase_14 AC 1,061 ms
16,164 KB
testcase_15 AC 1,162 ms
16,000 KB
testcase_16 AC 1,927 ms
21,888 KB
testcase_17 AC 133 ms
6,820 KB
testcase_18 AC 1,077 ms
14,464 KB
testcase_19 AC 148 ms
6,820 KB
testcase_20 AC 174 ms
6,816 KB
testcase_21 AC 173 ms
6,816 KB
testcase_22 AC 977 ms
13,440 KB
testcase_23 AC 1,041 ms
15,104 KB
testcase_24 AC 725 ms
9,876 KB
testcase_25 AC 30 ms
6,816 KB
testcase_26 AC 1,241 ms
16,768 KB
testcase_27 AC 623 ms
10,012 KB
testcase_28 AC 1,372 ms
17,152 KB
testcase_29 AC 1,011 ms
14,464 KB
testcase_30 AC 1,308 ms
17,920 KB
testcase_31 AC 567 ms
9,216 KB
testcase_32 AC 1,670 ms
20,480 KB
testcase_33 AC 1,997 ms
21,988 KB
testcase_34 AC 1,954 ms
21,988 KB
testcase_35 AC 1,934 ms
22,116 KB
testcase_36 AC 1,797 ms
22,016 KB
testcase_37 AC 1,875 ms
22,016 KB
testcase_38 AC 1,784 ms
22,016 KB
testcase_39 AC 1,777 ms
22,028 KB
testcase_40 AC 1,459 ms
22,016 KB
testcase_41 AC 2 ms
6,816 KB
testcase_42 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int n, k;
vector<long long> a;

long long solve();
bool ch(long long x);

int main() {
  cin >> n >> k;
  a.resize(2 * n);
  for (int i = 0; i < n; ++i) {
    cin >> a[i];
    a[i + n] = a[i];
  }
  cout << solve() << endl;
  return 0;
}

long long solve() {
  long long l = 0, r = 1;
  for (int i = 0; i < n; ++i) r += a[i];
  while (r - l > 1) {
    long long mid = (l + r) >> 1;
    if (ch(mid))
      l = mid;
    else
      r = mid;
  }
  return l;
}
bool ch(long long x) {
  vector<long long> memo(n, -1);
  for (long long i = 0, sum = 0, r = 0; i < n; ++i) {
    while (r < 2 * n && sum < x) sum += a[r++];
    memo[i] = r - i;
    sum -= a[i];
  }
  vector<vector<long long>> dp;
  dp.resize(20, vector<long long>(n));
  dp[0] = memo;
  for (int i = 1; i <= 17; ++i)
    for (int j = 0; j < n; ++j)
      dp[i][j] = dp[i - 1][j] + dp[i - 1][(j + dp[i - 1][j]) % n];
  for (int i = 0; i < n; ++i) {
    long long cnt = 0;
    for (int j = 0; j <= 17; ++j)
      if (k >> j & 1) cnt += dp[j][(i + cnt) % n];
    if (cnt <= n) return 1;
  }
  return 0;
}
0