結果

問題 No.1211 円環はお断り
ユーザー chocopuuchocopuu
提出日時 2020-08-30 20:47:17
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,885 ms / 2,000 ms
コード長 1,880 bytes
コンパイル時間 2,476 ms
コンパイル使用メモリ 208,928 KB
実行使用メモリ 34,616 KB
最終ジャッジ日時 2024-05-02 21:40:39
合計ジャッジ時間 34,216 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 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 855 ms
18,828 KB
testcase_14 AC 897 ms
16,152 KB
testcase_15 AC 1,145 ms
22,012 KB
testcase_16 AC 1,885 ms
34,028 KB
testcase_17 AC 104 ms
5,376 KB
testcase_18 AC 1,024 ms
19,924 KB
testcase_19 AC 117 ms
5,516 KB
testcase_20 AC 140 ms
6,024 KB
testcase_21 AC 151 ms
6,252 KB
testcase_22 AC 925 ms
19,280 KB
testcase_23 AC 1,096 ms
22,000 KB
testcase_24 AC 587 ms
13,972 KB
testcase_25 AC 25 ms
5,376 KB
testcase_26 AC 1,259 ms
24,760 KB
testcase_27 AC 612 ms
13,980 KB
testcase_28 AC 1,310 ms
25,496 KB
testcase_29 AC 1,005 ms
20,864 KB
testcase_30 AC 1,390 ms
27,560 KB
testcase_31 AC 517 ms
12,248 KB
testcase_32 AC 1,641 ms
31,620 KB
testcase_33 AC 1,834 ms
34,344 KB
testcase_34 AC 1,827 ms
34,476 KB
testcase_35 AC 1,858 ms
34,472 KB
testcase_36 AC 1,857 ms
34,608 KB
testcase_37 AC 1,835 ms
34,616 KB
testcase_38 AC 1,807 ms
34,480 KB
testcase_39 AC 1,777 ms
34,356 KB
testcase_40 AC 481 ms
9,344 KB
testcase_41 AC 1 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define int long long
#define REP(i, n) for (int i = 0; i < (int)n; ++i)
#define RREP(i, n) for (int i = (int)n - 1; i >= 0; --i)
#define FOR(i, s, n) for (int i = s; i < (int)n; ++i)
#define RFOR(i, s, n) for (int i = (int)n - 1; i >= s; --i)
#define ALL(a) a.begin(), a.end()
#define IN(a, x, b) (a <= x && x < b)
template<class T>istream&operator >>(istream&is,vector<T>&vec){for(T&x:vec)is>>x;return is;}
template<class T>inline void out(T t){cout << t << "\n";}
template<class T,class... Ts>inline void out(T t,Ts... ts){cout << t << " ";out(ts...);}
template<class T>inline bool CHMIN(T&a,T b){if(a > b){a = b;return true;}return false;}
template<class T>inline bool CHMAX(T&a,T b){if(a < b){a = b;return true;}return false;}
constexpr int INF = 1e18;

vector<vector<int>>getDoubling(vector<int>&a, int K) {
	vector<vector<int>>dp(log2(K) + 1, vector<int>(a.size(), -1));
	REP(i, a.size()) dp[0][i] = a[i];
	REP(i, log2(K)) {
		REP(j, a.size()) {
			if(dp[i][j] == a.size()) dp[i + 1][j] = dp[i][j];
			else dp[i + 1][j] = dp[i][dp[i][j]];
		}
	}
	return dp;
}

#define endl '\n'
#define IOS() ios_base::sync_with_stdio(0);cin.tie(0)

signed main(){
	IOS();
	int N, K;
	cin >> N >> K;
	vector<int>a(N);
	cin >> a;
	REP(i, N) a.emplace_back(a[i]);
	a.insert(a.begin(), 0);
	REP(i, a.size() - 1) a[i + 1] += a[i];

	auto f =[&](int x) -> bool {
		vector<int>to(a.size());
		REP(i, a.size()) {
			to[i] = lower_bound(ALL(a), a[i] + x) - a.begin();
		}
		auto dp = getDoubling(to, K);

		REP(i, N) {
			int now = i;
			REP(j, 18) {
				if(K & (1ll << j)) {
					now = dp[j][now];
					if(now == a.size()) return false;
				}
			}
			//out(i, now);
			if(now <= i + N) return true;
		}
		return false;
	};
	
	int l = -1, r = 1e14 + 1;
	while(r - l > 1){
		int c = (l + r) / 2;
		if(f(c)) l = c;
		else r = c;
	}
	cout << l << endl;
}
0