結果

問題 No.1211 円環はお断り
ユーザー tailstails
提出日時 2020-08-30 17:54:51
言語 cLay
(20240714-1)
結果
WA  
実行時間 -
コード長 465 bytes
コンパイル時間 2,098 ms
コンパイル使用メモリ 171,896 KB
実行使用メモリ 8,220 KB
最終ジャッジ日時 2024-07-05 13:56:47
合計ジャッジ時間 5,729 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 WA -
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 WA -
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 51 ms
5,632 KB
testcase_14 AC 81 ms
6,400 KB
testcase_15 AC 72 ms
6,144 KB
testcase_16 AC 95 ms
7,424 KB
testcase_17 AC 11 ms
5,376 KB
testcase_18 AC 64 ms
5,760 KB
testcase_19 AC 10 ms
5,376 KB
testcase_20 AC 13 ms
5,376 KB
testcase_21 AC 11 ms
5,376 KB
testcase_22 AC 55 ms
5,632 KB
testcase_23 AC 62 ms
5,888 KB
testcase_24 AC 32 ms
5,376 KB
testcase_25 AC 3 ms
5,376 KB
testcase_26 AC 81 ms
6,400 KB
testcase_27 AC 32 ms
5,376 KB
testcase_28 AC 79 ms
6,400 KB
testcase_29 AC 58 ms
5,888 KB
testcase_30 AC 71 ms
6,656 KB
testcase_31 AC 32 ms
5,376 KB
testcase_32 AC 82 ms
7,040 KB
testcase_33 AC 91 ms
7,552 KB
testcase_34 AC 90 ms
7,552 KB
testcase_35 AC 91 ms
7,552 KB
testcase_36 AC 89 ms
7,552 KB
testcase_37 AC 91 ms
7,552 KB
testcase_38 AC 74 ms
7,680 KB
testcase_39 AC 74 ms
7,680 KB
testcase_40 WA -
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 1 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