結果

問題 No.2217 Suffix+
ユーザー no wayno way
提出日時 2023-02-18 12:08:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 528 bytes
コンパイル時間 1,503 ms
コンパイル使用メモリ 166,036 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-19 23:26:17
合計ジャッジ時間 3,426 ms
ジャッジサーバーID
(参考情報)
judge5 / 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 WA -
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 2 ms
5,376 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 9 ms
5,376 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 2 ms
6,940 KB
testcase_36 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:25:13: warning: overflow in conversion from 'long long int' to 'int' changes value from '200000000000000' to '552894464' [-Woverflow]
   25 |         s(0,INF);
      |             ^~~

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
const int N=1e5+10;
const long long INF=2e14;
long long a[N];
int n,k;
long long ans;
int check(long long x){
	long long t=0,sum=0;
	for (int i=1;i<=n;i++) if (a[i]+t<x){
		sum+=(x-a[i]-t-1)/i+1;
		t+=1ll*i*((x-a[i]-t-1)/i+1);
	}
	return sum<=k;
}
void s(int l,int r){
	if (l>r) return;
	int mid=(l+r)/2;
	if (check(mid)) ans=mid,s(mid+1,r); else s(l,mid-1);
}
int main(){
	scanf("%d%d",&n,&k);
	for (int i=1;i<=n;i++) scanf("%lld",&a[i]);
	ans=0;
	s(0,INF);
	printf("%lld\n",ans);
}
0