結果

問題 No.1375 Divide and Update
ユーザー kotatsugamekotatsugame
提出日時 2021-02-05 21:46:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 354 ms / 2,000 ms
コード長 465 bytes
コンパイル時間 542 ms
コンパイル使用メモリ 66,688 KB
実行使用メモリ 7,424 KB
最終ジャッジ日時 2024-07-02 11:58:31
合計ジャッジ時間 6,132 ms
ジャッジサーバーID
(参考情報)
judge2 / 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 3 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 302 ms
7,040 KB
testcase_11 AC 278 ms
6,656 KB
testcase_12 AC 154 ms
5,376 KB
testcase_13 AC 128 ms
5,376 KB
testcase_14 AC 343 ms
7,424 KB
testcase_15 AC 346 ms
7,424 KB
testcase_16 AC 341 ms
7,424 KB
testcase_17 AC 350 ms
7,424 KB
testcase_18 AC 352 ms
7,424 KB
testcase_19 AC 354 ms
7,424 KB
testcase_20 AC 298 ms
7,424 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:8:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    8 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<algorithm>
using namespace std;
int N;
long X,Y;
int A[2<<17];
long L[2<<17],R[2<<17];
main()
{
	cin>>N>>X>>Y;
	long S=0;
	for(int i=0;i<N;i++)
	{
		cin>>A[i];
		S+=A[i];
	}
	L[0]=-9e18;
	long nS=0;
	for(int i=0;i<N-2;i++)
	{
		nS+=X-A[i];
		L[i+1]=max(L[i],nS);
		if(nS<0)nS=0;
	}
	R[N-1]=-9e18;
	nS=0;
	for(int i=N-1;i>1;i--)
	{
		nS+=Y-A[i];
		R[i-1]=max(R[i],nS);
		if(nS<0)nS=0;
	}
	for(int i=1;i<N-1;i++)cout<<S+L[i]+R[i]<<endl;
}
0