結果

問題 No.1211 円環はお断り
ユーザー leaf_1415leaf_1415
提出日時 2020-08-30 14:14:59
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,258 ms / 2,000 ms
コード長 1,646 bytes
コンパイル時間 626 ms
コンパイル使用メモリ 79,940 KB
実行使用メモリ 21,376 KB
最終ジャッジ日時 2024-11-23 16:12:54
合計ジャッジ時間 21,692 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 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 1 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 594 ms
12,672 KB
testcase_14 AC 753 ms
15,744 KB
testcase_15 AC 817 ms
15,360 KB
testcase_16 AC 1,231 ms
21,120 KB
testcase_17 AC 89 ms
5,248 KB
testcase_18 AC 794 ms
14,080 KB
testcase_19 AC 94 ms
5,248 KB
testcase_20 AC 122 ms
5,376 KB
testcase_21 AC 112 ms
5,376 KB
testcase_22 AC 639 ms
13,056 KB
testcase_23 AC 734 ms
14,848 KB
testcase_24 AC 385 ms
9,856 KB
testcase_25 AC 22 ms
5,248 KB
testcase_26 AC 861 ms
16,128 KB
testcase_27 AC 403 ms
9,856 KB
testcase_28 AC 927 ms
16,768 KB
testcase_29 AC 674 ms
13,952 KB
testcase_30 AC 843 ms
17,408 KB
testcase_31 AC 359 ms
9,088 KB
testcase_32 AC 1,078 ms
19,584 KB
testcase_33 AC 1,244 ms
21,248 KB
testcase_34 AC 1,215 ms
21,376 KB
testcase_35 AC 1,258 ms
21,248 KB
testcase_36 AC 1,128 ms
21,248 KB
testcase_37 AC 1,220 ms
21,376 KB
testcase_38 AC 1,059 ms
21,260 KB
testcase_39 AC 1,067 ms
21,260 KB
testcase_40 AC 51 ms
21,376 KB
testcase_41 AC 2 ms
5,248 KB
testcase_42 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <cmath>
#include <ctime>
#include <cstdlib>
#include <cassert>
#include <vector>
#include <list>
#include <stack>
#include <queue>
#include <deque>
#include <map>
#include <set>
#include <bitset>
#include <string>
#include <algorithm>
#include <utility>
#define llint long long
#define inf 1e18
#define rep(x, s, t) for(llint (x) = (s); (x) < (t); (x)++)
#define Rep(x, s, t) for(llint (x) = (s); (x) <= (t); (x)++)
#define chmin(x, y) (x) = min((x), (y))
#define chmax(x, y) (x) = max((x), (y))
#define mod 1000000007

using namespace std;
typedef pair<llint, llint> P;

llint n, k;
llint a[300005], sum[300005];
llint succ[100005][17];

bool check(llint d)
{
	if(d > sum[n]) return false;
	
	llint r = -1;
	for(int i = 0; i < n; i++){
		while(r < i || sum[r]-sum[i] < d) r++;
		succ[i][0] = r-i;//lower_bound(sum, sum+3*n, sum[i] + d) - (sum+i);
	}
	for(int i = 1; i < 17; i++){
		for(int j = 0; j < n; j++){
			succ[j][i] = succ[j][i-1] + succ[(j+succ[j][i-1])%n][i-1];
		}
	}
	
	for(int i = 0; i < n; i++){
		llint v = i, s = 0;
		for(int j = 16; j >= 0; j--){
			if(k & (1<<j)){
				s += succ[v][j];
				if(s > n) goto end;
				v += succ[v][j], v %= n;
			}
		}
		return true;
		end:;
	}
	return false;
}

int main(void)
{
	ios::sync_with_stdio(0);
	cin.tie(0);
	
	cin >> n >> k;
	for(int i = 0; i < n; i++) cin >> a[i];
	for(int i = n; i < 3*n; i++) a[i] = a[i%n];
	
	llint s = 0;
	for(int i = 0; i < 3*n; i++){
		sum[i] = s;
		s += a[i];
	}
	
	llint ub = 2e14, lb = 0, mid;
	while(ub-lb>1){
		mid = (ub+lb)/2;
		if(check(mid)) lb = mid;
		else ub = mid;
	}
	cout << lb << endl;
	
	return 0;
}
0