結果

問題 No.1211 円環はお断り
ユーザー 🍮かんプリン🍮かんプリン
提出日時 2020-09-01 04:06:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,630 bytes
コンパイル時間 1,749 ms
コンパイル使用メモリ 172,056 KB
実行使用メモリ 27,612 KB
最終ジャッジ日時 2024-11-17 07:10:14
合計ジャッジ時間 41,869 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 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 1 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 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 1,040 ms
15,980 KB
testcase_14 AC 1,429 ms
19,972 KB
testcase_15 AC 1,426 ms
19,456 KB
testcase_16 TLE -
testcase_17 AC 151 ms
5,376 KB
testcase_18 AC 1,220 ms
17,696 KB
testcase_19 AC 153 ms
5,420 KB
testcase_20 AC 204 ms
6,056 KB
testcase_21 AC 204 ms
6,016 KB
testcase_22 AC 1,110 ms
16,368 KB
testcase_23 AC 1,308 ms
18,560 KB
testcase_24 AC 704 ms
11,968 KB
testcase_25 AC 26 ms
5,248 KB
testcase_26 AC 1,527 ms
20,872 KB
testcase_27 AC 711 ms
12,032 KB
testcase_28 AC 1,589 ms
21,504 KB
testcase_29 AC 1,228 ms
17,568 KB
testcase_30 AC 1,685 ms
22,072 KB
testcase_31 AC 700 ms
11,008 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 AC 42 ms
5,248 KB
testcase_41 AC 2 ms
5,248 KB
testcase_42 AC 1 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// 解法見て書いただけ 要復習

/**
 *   @FileName	a.cpp
 *   @Author	kanpurin
 *   @Created	2020.09.01 04:06:21
**/

#include "bits/stdc++.h" 
using namespace std; 
typedef long long ll;

int n,k;
vector<int> a;

bool f(ll x) {
    vector<vector<int>> next(2 * n + 1,vector<int>(20));
    ll sum = 0;
    int t = 0;
    for (int i = 0; i < n; i++) {
        while(t < 2 * n && sum < x) {
            sum += a[t % n];
            t++;
            if (i + n <= t) return false;
        }
        next[i][0] = t;
        next[i + n][0] = min(2 * n,t + n);
        sum -= a[i];
    }
    for (int i = 0; i < 20; i++) {
        next[2 * n][i] = 2 * n;
    } 
    for (int i = 0; i < 19; i++) {
        for (int j = 0; j < n; j++) {
            next[j][i + 1] = next[next[j][i]][i];
            next[j + n][i + 1] = next[next[j + n][i]][i];
        }
    }
    for (int i = 0; i < n; i++) {
        int p = k;
        int q = 0;
        int now = i;
        while(p && now != 2 * n) {
            if (p & 1) {
                now = next[now][q];
            }
            p >>= 1;
            q++;
        }
        if (now <= n + i) return true;
    }
    return false;
}
int main() {
    cin >> n >> k;
    a.resize(2 * n);
    ll l = 0, r = 1;
    for (int i = 0; i < n; i++) {
        cin >> a[i];
        a[i + n] = a[i];
        r += a[i];
    }
    if (k == 1) {
        cout << r - 1 << endl;
        return 0;
    }
    while(r - l > 1) {
        ll mid = l + (r - l) / 2;
        if (f(mid)) {
            l = mid;
        }
        else {
            r = mid;
        }
    }
    cout << l << endl;
    return 0;
}
0