結果

問題 No.1211 円環はお断り
ユーザー vjudge1vjudge1
提出日時 2024-09-07 22:38:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,592 bytes
コンパイル時間 2,263 ms
コンパイル使用メモリ 201,948 KB
実行使用メモリ 39,068 KB
最終ジャッジ日時 2024-09-07 22:39:11
合計ジャッジ時間 28,991 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,820 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 3 ms
7,520 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 3 ms
7,520 KB
testcase_07 AC 3 ms
7,656 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 3 ms
7,660 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 552 ms
22,848 KB
testcase_14 WA -
testcase_15 AC 748 ms
28,828 KB
testcase_16 AC 1,510 ms
37,616 KB
testcase_17 AC 81 ms
9,844 KB
testcase_18 AC 682 ms
26,532 KB
testcase_19 AC 86 ms
9,724 KB
testcase_20 WA -
testcase_21 AC 107 ms
7,884 KB
testcase_22 AC 633 ms
24,680 KB
testcase_23 AC 767 ms
28,508 KB
testcase_24 AC 397 ms
18,336 KB
testcase_25 AC 16 ms
6,940 KB
testcase_26 AC 884 ms
30,288 KB
testcase_27 AC 392 ms
18,336 KB
testcase_28 AC 892 ms
31,396 KB
testcase_29 AC 714 ms
25,016 KB
testcase_30 AC 1,022 ms
30,696 KB
testcase_31 AC 335 ms
14,800 KB
testcase_32 AC 1,292 ms
35,740 KB
testcase_33 AC 1,521 ms
37,784 KB
testcase_34 AC 1,558 ms
37,936 KB
testcase_35 AC 1,510 ms
38,064 KB
testcase_36 AC 1,639 ms
38,428 KB
testcase_37 AC 1,733 ms
37,788 KB
testcase_38 AC 1,670 ms
38,300 KB
testcase_39 AC 1,795 ms
38,680 KB
testcase_40 WA -
testcase_41 AC 3 ms
7,516 KB
testcase_42 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define int long long
using namespace std;
#define fi first
#define sc second
#define pii pair<int,int>
#define pb push_back
const int maxn=2e5+10;
int n,k,a[maxn],s[maxn],nxt[maxn][20],f[maxn];
bool chk(int x){
    for(int i=1;i<=n*2;i++){
        nxt[i][0]=lower_bound(s+1,s+n*2+1,s[i]+x)-s;
    }
    for(int i=0;i<=19;i++) nxt[n*2+1][i]=n*2+1;
    for(int i=1;i<=19;i++){
        for(int j=1;j<=n*2;j++) nxt[j][i]=nxt[nxt[j][i-1]][i-1];
    } 
    for(int i=1;i<=n;i++){
        nxt[n*2][0]=n*2;
        int now=i;
        for(int j=0;j<=19;j++){
            if(k&(1<<j)) now=nxt[now][j];
        }
        if(now-i<=n) return 1;
    }
    return 0;
}
void solve(){
    cin>>n>>k;
    for(int i=1;i<=n;i++) cin>>a[i],a[i+n]=a[i];
    for(int i=1;i<=n*2;i++) s[i]=s[i-1]+a[i];
    int l=0,r=2e9,mid=0;
    while(l<=r) mid=(l+r)>>1,(chk(mid)?l=mid+1:r=mid-1);
    l--,cout<<l<<" ";
    for(int i=1;i<=n*2;i++){
        nxt[i][0]=lower_bound(s+1,s+n*2+1,s[i]+l)-s;
    }
    for(int i=0;i<=19;i++) nxt[n*2+1][i]=n*2+1;
    for(int i=1;i<=19;i++){
        for(int j=1;j<=n*2;j++) nxt[j][i]=nxt[nxt[j][i-1]][i-1];
    } 
    int res=0;
    for(int i=1;i<=n;i++){
        nxt[n*2][0]=n*2;
        int now=i;
        for(int j=0;j<=19;j++){
            if(k&(1<<j)) now=nxt[now][j];
        }
        res+=(now-i>n);
    }
    // cout<<res<<endl;
}
signed main(){
    ios::sync_with_stdio(false);
    cin.tie(0),cout.tie(0);
    int t=1;
    // cin>>t;
    while(t--) solve();
    return 0;
}
/*
Samples
input:

output:

THINGS TODO:
??freopen???????
????
????????????
*/
0