結果

問題 No.1211 円環はお断り
ユーザー milanis48663220milanis48663220
提出日時 2020-08-31 01:19:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,110 ms / 2,000 ms
コード長 1,681 bytes
コンパイル時間 1,158 ms
コンパイル使用メモリ 86,596 KB
実行使用メモリ 20,060 KB
最終ジャッジ日時 2024-11-23 16:30:09
合計ジャッジ時間 17,031 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 1 ms
6,820 KB
testcase_05 AC 2 ms
6,816 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 3 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 416 ms
11,904 KB
testcase_14 AC 695 ms
14,976 KB
testcase_15 AC 589 ms
14,592 KB
testcase_16 AC 813 ms
19,624 KB
testcase_17 AC 66 ms
5,248 KB
testcase_18 AC 577 ms
13,184 KB
testcase_19 AC 62 ms
5,248 KB
testcase_20 AC 96 ms
5,376 KB
testcase_21 AC 78 ms
5,248 KB
testcase_22 AC 435 ms
12,288 KB
testcase_23 AC 460 ms
13,824 KB
testcase_24 AC 259 ms
9,344 KB
testcase_25 AC 16 ms
5,248 KB
testcase_26 AC 600 ms
15,616 KB
testcase_27 AC 255 ms
9,344 KB
testcase_28 AC 665 ms
15,744 KB
testcase_29 AC 465 ms
13,184 KB
testcase_30 AC 570 ms
16,256 KB
testcase_31 AC 265 ms
8,576 KB
testcase_32 AC 699 ms
18,304 KB
testcase_33 AC 777 ms
19,896 KB
testcase_34 AC 780 ms
19,856 KB
testcase_35 AC 760 ms
19,840 KB
testcase_36 AC 734 ms
19,840 KB
testcase_37 AC 730 ms
19,932 KB
testcase_38 AC 779 ms
19,928 KB
testcase_39 AC 775 ms
20,060 KB
testcase_40 AC 1,110 ms
19,828 KB
testcase_41 AC 2 ms
5,248 KB
testcase_42 AC 3 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <set>
#include <map>

using namespace std;
typedef long long ll;

const ll INF = 1e15;

int N, K;
ll A[100005];

ll next_offset[100005][20];
bool used[100005];

void clear_used(){
    for(int i = 0; i < N; i++) used[i] = false;
}

void build(ll m){
    ll sum_sect = 0;
    int r = -1;
    for(int i = 0; i < N; i++){
        while(sum_sect < m){
            r++;
            if(r >= 2*N) sum_sect = INF;
            sum_sect += A[r%N];
        }
        next_offset[i][0] = r-i+1;
        sum_sect -= A[i];
    }
    for(int j = 1; j < 17; j++){
        for(int i = 0; i < N; i++){
            next_offset[i][j] = next_offset[i][j-1]+next_offset[(i+next_offset[i][j-1])%N][j-1];
        }
    }
}

vector<int> bt;

ll cnt(int s){
    ll ans = 0;
    for(int i : bt){
        used[s] = true;
        ans += next_offset[s][i];
        s += next_offset[s][i];
        s %= N;
    }
    return ans;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    cin >> N >> K;
    for(int i = 0; i < 17; i++){
        if(K&(1<<i)) bt.push_back(i);
    }
    ll sum_all = 0;
    for(int i = 0; i < N; i++){
        cin >> A[i];
        sum_all += A[i];
    }
    ll l = 1, r = (sum_all+K)/K;
    
    while(r-l > 1){
        ll c = (l+r)/2;
        clear_used();
        build(c);
        bool ok = false;
        for(int i = 0; i < N; i++){
            if(!used[i]){
                ll tmp = cnt(i);
                if(tmp <= N) ok = true;
            }
        }
        if(ok) l = c;
        else r = c;
    }
    cout << l << endl;
}
0