結果

問題 No.1211 円環はお断り
ユーザー tailstails
提出日時 2020-08-30 17:55:55
言語 cLay
(20240714-1)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 464 bytes
コンパイル時間 2,005 ms
コンパイル使用メモリ 171,904 KB
実行使用メモリ 7,680 KB
最終ジャッジ日時 2024-07-05 13:57:08
合計ジャッジ時間 5,832 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 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 59 ms
5,632 KB
testcase_14 AC 89 ms
6,144 KB
testcase_15 AC 83 ms
6,272 KB
testcase_16 AC 102 ms
7,680 KB
testcase_17 AC 11 ms
5,376 KB
testcase_18 AC 70 ms
5,760 KB
testcase_19 AC 10 ms
5,376 KB
testcase_20 AC 15 ms
5,376 KB
testcase_21 AC 12 ms
5,376 KB
testcase_22 AC 59 ms
5,632 KB
testcase_23 AC 67 ms
5,888 KB
testcase_24 AC 34 ms
5,376 KB
testcase_25 AC 4 ms
5,376 KB
testcase_26 AC 86 ms
6,272 KB
testcase_27 AC 36 ms
5,376 KB
testcase_28 AC 87 ms
6,528 KB
testcase_29 AC 63 ms
5,760 KB
testcase_30 AC 78 ms
6,528 KB
testcase_31 AC 35 ms
5,376 KB
testcase_32 AC 94 ms
7,040 KB
testcase_33 AC 87 ms
7,552 KB
testcase_34 AC 87 ms
7,552 KB
testcase_35 AC 89 ms
7,680 KB
testcase_36 AC 89 ms
7,424 KB
testcase_37 AC 87 ms
7,424 KB
testcase_38 AC 72 ms
7,552 KB
testcase_39 AC 74 ms
7,552 KB
testcase_40 AC 106 ms
5,888 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll n,k,a[1d5];
ll g,h,m;

ll j,s;
ll c[1d5],d[1d5],e[1d5];
bool f(ll m){
	j=s=0;
	rep(i,n){
		while(s<m){
			s+=a[j++%n];
			if(j-i>n){
				return false;
			}
		}
		c[i]=j;
		s-=a[i];
	}
	rrep(i,n){
		if(c[i]>=n){
			d[i]=1,e[i]=c[i]-n;
		}else{
			d[i]=1+d[c[i]],e[i]=e[c[i]];
		}
		if(d[i]==k && e[i]<=i){
			return true;
		}
	}
	return false;
}

{
	rd(n,k,a(n));
	g=1;
	h=1d14+1;
	while(g+1<h){
		m=g+h>>1;
		if(f(m)){
			g=m;
		}else{
			h=m;
		}
	}
	wt(g);
}
0