結果

問題 No.1211 円環はお断り
ユーザー RhoRho
提出日時 2020-08-24 22:34:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 657 ms / 2,000 ms
コード長 987 bytes
コンパイル時間 1,797 ms
コンパイル使用メモリ 169,340 KB
実行使用メモリ 37,124 KB
最終ジャッジ日時 2024-11-23 16:09:46
合計ジャッジ時間 11,170 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
34,252 KB
testcase_01 AC 9 ms
34,256 KB
testcase_02 AC 9 ms
36,296 KB
testcase_03 AC 9 ms
34,252 KB
testcase_04 AC 8 ms
34,252 KB
testcase_05 AC 9 ms
34,260 KB
testcase_06 AC 9 ms
34,248 KB
testcase_07 AC 9 ms
34,248 KB
testcase_08 AC 9 ms
36,296 KB
testcase_09 AC 9 ms
34,252 KB
testcase_10 AC 8 ms
34,132 KB
testcase_11 AC 8 ms
34,260 KB
testcase_12 AC 9 ms
34,124 KB
testcase_13 AC 217 ms
35,476 KB
testcase_14 AC 361 ms
36,256 KB
testcase_15 AC 286 ms
36,740 KB
testcase_16 AC 434 ms
37,068 KB
testcase_17 AC 39 ms
34,456 KB
testcase_18 AC 269 ms
35,948 KB
testcase_19 AC 42 ms
34,616 KB
testcase_20 AC 53 ms
34,652 KB
testcase_21 AC 49 ms
34,516 KB
testcase_22 AC 225 ms
35,520 KB
testcase_23 AC 265 ms
35,956 KB
testcase_24 AC 149 ms
35,140 KB
testcase_25 AC 17 ms
34,348 KB
testcase_26 AC 312 ms
36,224 KB
testcase_27 AC 150 ms
36,624 KB
testcase_28 AC 321 ms
36,824 KB
testcase_29 AC 248 ms
35,804 KB
testcase_30 AC 329 ms
36,820 KB
testcase_31 AC 135 ms
35,000 KB
testcase_32 AC 399 ms
36,784 KB
testcase_33 AC 429 ms
36,996 KB
testcase_34 AC 427 ms
36,996 KB
testcase_35 AC 423 ms
37,124 KB
testcase_36 AC 422 ms
36,996 KB
testcase_37 AC 410 ms
37,120 KB
testcase_38 AC 436 ms
36,988 KB
testcase_39 AC 439 ms
37,120 KB
testcase_40 AC 657 ms
37,120 KB
testcase_41 AC 8 ms
34,128 KB
testcase_42 AC 8 ms
34,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
#define rep(i,n)for(int i=0;i<(int)(n);i++)
using namespace std;
#define all(a) a.begin(),a.end()
typedef long long ll;
typedef pair<ll,ll>P;
#define vi vector<ll>
const ll inf=1ll<<61;
ll a[100006];
ll rwa[200005];
ll to[20][200005];
signed main(){
	ll n,k;cin>>n>>k;
	ll S=0;
	rep(i,n){
		cin>>a[i];
		rwa[i+1]=rwa[i+n+1]=a[i];
		S+=a[i];
	}
	rep(i,n+n)rwa[i+1]+=rwa[i];

	ll lb=0,ub=(S/k)+1;
	while(ub-lb>1){
		//全員がmi以上保持できるか?
		ll mi=(ub+lb)/2;

		rep(i,n){
			auto itr=lower_bound(rwa,rwa+n+n+1,rwa[i]+mi);
			to[0][i]=itr-rwa;
			to[0][i+n]=to[0][i]+n;
			if(to[0][i+n]>=n+n)to[0][i+n]=n+n;
		}
		to[0][n+n]=n+n;
		rep(i,19){
			rep(j,n+n+1){
				to[i+1][j]=to[i][to[i][j]];
			}
		}
		int ok=0;
		rep(i,n){
			int now=i;
			rep(j,19){
				if(k&(1<<j))now=to[j][now];
			}
			if(i<now&&now<=i+n)ok++;
		}

		if(ok)lb=mi;
		else ub=mi;
	}
	cout<<lb<<endl;

	assert(1<=k&&k<=n&&n<=100000);
	rep(i,n)assert(1<=a[i]&&a[i]<=1000000000);
}
0