結果

問題 No.1211 円環はお断り
ユーザー leaf_1415leaf_1415
提出日時 2020-08-30 14:09:27
言語 C++11
(gcc 11.4.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,563 bytes
コンパイル時間 1,275 ms
コンパイル使用メモリ 78,516 KB
実行使用メモリ 21,504 KB
最終ジャッジ日時 2024-11-15 07:26:35
合計ジャッジ時間 41,468 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
7,524 KB
testcase_01 AC 2 ms
7,648 KB
testcase_02 AC 2 ms
7,520 KB
testcase_03 AC 2 ms
7,524 KB
testcase_04 AC 2 ms
7,520 KB
testcase_05 AC 2 ms
7,524 KB
testcase_06 AC 2 ms
7,524 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 3 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 3 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 905 ms
12,800 KB
testcase_14 AC 1,091 ms
15,744 KB
testcase_15 AC 1,172 ms
15,616 KB
testcase_16 TLE -
testcase_17 AC 124 ms
5,248 KB
testcase_18 AC 1,145 ms
14,080 KB
testcase_19 AC 137 ms
5,248 KB
testcase_20 AC 159 ms
5,632 KB
testcase_21 AC 152 ms
5,376 KB
testcase_22 AC 884 ms
13,184 KB
testcase_23 AC 989 ms
14,848 KB
testcase_24 AC 549 ms
9,984 KB
testcase_25 AC 30 ms
5,248 KB
testcase_26 AC 1,424 ms
19,324 KB
testcase_27 AC 580 ms
9,984 KB
testcase_28 AC 1,593 ms
16,768 KB
testcase_29 AC 1,101 ms
13,952 KB
testcase_30 AC 1,630 ms
17,280 KB
testcase_31 AC 570 ms
9,088 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 AC 866 ms
21,264 KB
testcase_41 AC 2 ms
5,248 KB
testcase_42 AC 2 ms
7,524 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;
	
	for(int i = 0; i < n; i++){
		succ[i][0] = 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];
				v += succ[v][j], v %= n;
			}
		}
		if(s <= n) return true;
	}
	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 = 1e15, 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