結果

問題 No.1211 円環はお断り
ユーザー beetbeet
提出日時 2020-08-30 13:45:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,045 ms / 2,000 ms
コード長 1,603 bytes
コンパイル時間 2,182 ms
コンパイル使用メモリ 205,932 KB
実行使用メモリ 38,416 KB
最終ジャッジ日時 2024-05-02 21:22:03
合計ジャッジ時間 21,943 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 503 ms
21,540 KB
testcase_14 AC 642 ms
27,572 KB
testcase_15 AC 628 ms
26,892 KB
testcase_16 AC 994 ms
37,992 KB
testcase_17 AC 73 ms
6,676 KB
testcase_18 AC 568 ms
24,412 KB
testcase_19 AC 75 ms
6,680 KB
testcase_20 AC 94 ms
7,672 KB
testcase_21 AC 93 ms
7,424 KB
testcase_22 AC 526 ms
22,356 KB
testcase_23 AC 604 ms
25,388 KB
testcase_24 AC 331 ms
15,920 KB
testcase_25 AC 20 ms
5,376 KB
testcase_26 AC 687 ms
29,072 KB
testcase_27 AC 334 ms
16,176 KB
testcase_28 AC 694 ms
29,636 KB
testcase_29 AC 570 ms
24,144 KB
testcase_30 AC 749 ms
30,860 KB
testcase_31 AC 296 ms
14,672 KB
testcase_32 AC 904 ms
35,180 KB
testcase_33 AC 1,039 ms
38,400 KB
testcase_34 AC 1,037 ms
38,408 KB
testcase_35 AC 1,018 ms
38,408 KB
testcase_36 AC 1,022 ms
38,416 KB
testcase_37 AC 1,036 ms
38,320 KB
testcase_38 AC 1,045 ms
38,284 KB
testcase_39 AC 1,044 ms
38,412 KB
testcase_40 AC 787 ms
38,412 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using Int = long long;
const char newl = '\n';

template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;}
template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;}
template<typename T> void drop(const T &x){cout<<x<<endl;exit(0);}
template<typename T=Int>
vector<T> read(size_t n){
  vector<T> ts(n);
  for(size_t i=0;i<n;i++) cin>>ts[i];
  return ts;
}


template<typename T, typename ...Ts>
vector<T> fusion(vector<T> bs,Ts... ts){
  auto append=[&](auto vs){for(auto v:vs) bs.emplace_back(v);};
  initializer_list<Int>{(void(append(ts)),0)...};
  return bs;
}

//INSERT ABOVE HERE
const Int LOG = 20;
const Int MAX = 1e5 + 100;
Int nx[LOG][3 * MAX];
signed main(){
  cin.tie(0);
  ios::sync_with_stdio(0);

  Int n,m;
  cin>>n>>m;
  auto as=read(n);

  auto rs=fusion(as,as);
  vector<Int> sm(2*n+1);
  for(Int i=0;i<2*n;i++) sm[i+1]=sm[i]+rs[i];

  auto check=[&](Int d)->Int{
    for(Int i=0;i<=2*n;i++)
      nx[0][i]=lower_bound(sm.begin(),sm.end(),sm[i]+d)-sm.begin();

    for(Int k=0;k<LOG;k++) nx[k][2*n+1]=2*n+1;

    for(Int k=0;k+1<LOG;k++)
      for(Int i=0;i<=2*n;i++)
        nx[k+1][i]=nx[k][nx[k][i]];

    for(Int i=0;i<n;i++){    nx[0][2*n]=2*n+1;
      Int j=i;
      for(Int k=0;k<LOG;k++)
        if((m>>k)&1) j=nx[k][j];

      // cout<<d<<':'<<m<<':'<<i<<' '<<j<<newl;
      if(j-i<=n) return 1;
    }
    return 0;
  };

  Int L=0,R=1e15;
  // check(L) : true
  // check(R) : false
  while(L+1<R){
    Int M=(L+R)>>1;
    if(check(M)) L=M;
    else R=M;
  }
  cout<<L<<newl;
  return 0;
}
0