結果

問題 No.1391 ±1 Abs Sum
ユーザー kotatsugamekotatsugame
提出日時 2021-02-12 22:03:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 1,194 bytes
コンパイル時間 541 ms
コンパイル使用メモリ 67,840 KB
実行使用メモリ 6,656 KB
最終ジャッジ日時 2024-07-19 21:36:12
合計ジャッジ時間 3,987 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 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 124 ms
6,656 KB
testcase_12 AC 87 ms
5,760 KB
testcase_13 AC 109 ms
6,272 KB
testcase_14 AC 84 ms
5,376 KB
testcase_15 AC 90 ms
5,376 KB
testcase_16 AC 114 ms
5,760 KB
testcase_17 AC 101 ms
5,504 KB
testcase_18 AC 139 ms
6,144 KB
testcase_19 AC 70 ms
5,504 KB
testcase_20 AC 124 ms
6,528 KB
testcase_21 AC 56 ms
5,888 KB
testcase_22 AC 57 ms
6,016 KB
testcase_23 AC 65 ms
6,528 KB
testcase_24 AC 61 ms
6,016 KB
testcase_25 AC 63 ms
6,144 KB
testcase_26 AC 63 ms
6,272 KB
testcase_27 AC 44 ms
5,504 KB
testcase_28 AC 45 ms
5,632 KB
testcase_29 AC 59 ms
6,144 KB
testcase_30 AC 51 ms
5,632 KB
testcase_31 AC 132 ms
6,656 KB
testcase_32 AC 45 ms
5,376 KB
testcase_33 AC 51 ms
5,376 KB
testcase_34 AC 80 ms
6,400 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 94 ms
6,656 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:7:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    7 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<algorithm>
using namespace std;
int N,K;
long A[2<<17];
long Ls[2<<17];
main()
{
	cin>>N>>K;
	for(int i=0;i<N;i++)cin>>A[i];
	Ls[0]=0;
	for(int i=0;i<N;i++)Ls[i+1]=Ls[i]+A[i];
	long ans=9e18;
	if(K==0)
	{
		ans=min(ans,N*A[0]-Ls[N]);
		ans=min(ans,Ls[N]-N*A[N-1]);
		cout<<ans<<endl;
		return 0;
	}
	for(int a=0;a+K<=N;a++)
	{
		auto calc=[&a](int id)
		{
			if(id<a)
			{
				return -(Ls[N]-Ls[a+K]-(N-a-K)*A[id])
				+(Ls[a+K]-Ls[a]-K*A[id])
				-(Ls[a]-Ls[id]-(a-id)*A[id])
				-(id*A[id]-Ls[id]);
			}
			else if(id<a+K)
			{
				return -(Ls[N]-Ls[a+K]-(N-a-K)*A[id])
				+(Ls[a+K]-Ls[id]-(a+K-id)*A[id])
				+((id-a)*A[id]-(Ls[id]-Ls[a]))
				-(a*A[id]-Ls[a]);
			}
			else
			{
				return -(Ls[N]-Ls[id]-(N-id)*A[id])
				-((id-a-K)*A[id]-(Ls[id]-Ls[a+K]))
				+(K*A[id]-(Ls[a+K]-Ls[a]))
				-(a*A[id]-Ls[a]);
			}
		};
		ans=min(ans,calc(0));
		ans=min(ans,calc(a));
		ans=min(ans,calc(a+K-1));
		ans=min(ans,calc(N-1));
		int L=a,R=a+K-1;
		while(R-L>2)
		{
			int m1=(L+L+R)/3,m2=(L+R+R)/3;
			long f1=calc(m1),f2=calc(m2);
			ans=min(ans,min(f1,f2));
			if(f1<f2)R=m2;
			else L=m1;
		}
		for(int x=L+1;x<R;x++)ans=min(ans,calc(x));
	}
	cout<<ans<<endl;
}
0