結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 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 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 386 ms
11,904 KB
testcase_14 AC 526 ms
14,848 KB
testcase_15 AC 518 ms
14,592 KB
testcase_16 AC 768 ms
19,712 KB
testcase_17 AC 57 ms
5,376 KB
testcase_18 AC 452 ms
13,184 KB
testcase_19 AC 60 ms
5,376 KB
testcase_20 AC 77 ms
5,504 KB
testcase_21 AC 77 ms
5,376 KB
testcase_22 AC 403 ms
12,416 KB
testcase_23 AC 477 ms
13,824 KB
testcase_24 AC 264 ms
9,472 KB
testcase_25 AC 14 ms
5,376 KB
testcase_26 AC 545 ms
15,360 KB
testcase_27 AC 267 ms
9,472 KB
testcase_28 AC 579 ms
15,744 KB
testcase_29 AC 456 ms
13,184 KB
testcase_30 AC 597 ms
16,256 KB
testcase_31 AC 236 ms
8,832 KB
testcase_32 AC 703 ms
18,432 KB
testcase_33 AC 771 ms
19,840 KB
testcase_34 AC 785 ms
19,840 KB
testcase_35 AC 788 ms
19,840 KB
testcase_36 AC 780 ms
19,840 KB
testcase_37 AC 790 ms
19,712 KB
testcase_38 AC 798 ms
19,712 KB
testcase_39 AC 799 ms
19,840 KB
testcase_40 AC 338 ms
19,712 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 2 ms
5,376 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