結果

問題 No.1211 円環はお断り
ユーザー chocoruskchocorusk
提出日時 2020-08-30 22:44:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 781 ms / 2,000 ms
コード長 1,303 bytes
コンパイル時間 1,466 ms
コンパイル使用メモリ 127,740 KB
実行使用メモリ 19,840 KB
最終ジャッジ日時 2024-11-23 16:29:30
合計ジャッジ時間 15,625 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 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 3 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 364 ms
12,032 KB
testcase_14 AC 519 ms
14,720 KB
testcase_15 AC 501 ms
14,592 KB
testcase_16 AC 743 ms
19,712 KB
testcase_17 AC 56 ms
5,248 KB
testcase_18 AC 438 ms
13,184 KB
testcase_19 AC 58 ms
5,248 KB
testcase_20 AC 71 ms
5,504 KB
testcase_21 AC 72 ms
5,376 KB
testcase_22 AC 387 ms
12,288 KB
testcase_23 AC 458 ms
13,824 KB
testcase_24 AC 249 ms
9,472 KB
testcase_25 AC 16 ms
5,248 KB
testcase_26 AC 535 ms
15,360 KB
testcase_27 AC 260 ms
9,472 KB
testcase_28 AC 561 ms
15,744 KB
testcase_29 AC 430 ms
13,312 KB
testcase_30 AC 583 ms
16,384 KB
testcase_31 AC 232 ms
8,832 KB
testcase_32 AC 688 ms
18,432 KB
testcase_33 AC 751 ms
19,840 KB
testcase_34 AC 775 ms
19,840 KB
testcase_35 AC 760 ms
19,712 KB
testcase_36 AC 756 ms
19,840 KB
testcase_37 AC 767 ms
19,840 KB
testcase_38 AC 781 ms
19,840 KB
testcase_39 AC 775 ms
19,840 KB
testcase_40 AC 330 ms
19,840 KB
testcase_41 AC 1 ms
5,248 KB
testcase_42 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#define popcount __builtin_popcount
#define popcountll __builtin_popcountll
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;

int main()
{
	int n, k; cin>>n>>k;
	ll a[200020];
	ll s[200020];
	for(int i=0; i<n; i++){
		cin>>a[i];
		a[i+n]=a[i];
	}
	s[0]=0;
	for(int i=0; i<2*n; i++) s[i+1]=s[i]+a[i];
	ll l=1, r=1.1e14;
	while(r-l>1){
		ll m=(l+r)/2;
		if(m>s[n]){
			r=m;
			continue;
		}
		int nx[17][200020];
		nx[0][2*n]=2*n;
		for(int i=0; i<2*n; i++){
			nx[0][i]=lower_bound(s, s+2*n, s[i]+m)-s;
		}
		for(int i=1; i<17; i++){
			nx[i][2*n]=2*n;
			for(int j=0; j<2*n; j++){
				nx[i][j]=nx[i-1][nx[i-1][j]];
			}
		}
		bool ok=0;
		for(int i=0; i<n; i++){
			int t=i;
			for(int j=16; j>=0; j--){
				if(k&(1<<j)){
					t=nx[j][t];
				}
			}
			if(t<=i+n){
				ok=1; break;
			}
		}
		if(ok) l=m;
		else r=m;
	}
	cout<<l<<endl;
	return 0;
}
0