제출 #56530

#제출 시각아이디문제언어결과실행 시간메모리
56530fefe수열 (APIO14_sequence)C++17
100 / 100
618 ms85204 KiB
#include<bits/stdc++.h>
#define MAX_N 100005
#define sq(x) ((x)*(x))
using namespace std;
typedef long long LL;
struct node{
	LL a,b,idx;
}fc[MAX_N],nfc[MAX_N];
LL n,k,sum[MAX_N],dp[MAX_N];
LL s,e,ns,ne,ans,anss[MAX_N],ansn;
int from[205][MAX_N];
bool is_ok(node x,node y,node z){return (x.a-y.a)*(z.b-x.b)>(x.a-z.a)*(y.b-x.b);}
int main(){
	LL i,j,x,F;
	node p;
	scanf("%lld %lld",&n,&k);
	for(i=1;i<=n;i++){
		scanf("%lld",&x);
		sum[i]=sum[i-1]+x;
	}
	s=e=0;
	ans=-1;
	for(i=1;i<=n;i++){
		dp[i]=(sum[i])*(sum[n]-sum[i]);
		if(1==k && ans<dp[i] && i!=n){
			ans=dp[i];
			F=i;
		}
		p.a=sum[i];
		p.b=dp[i]-sum[n]*sum[i];
		p.idx=i;
		from[1][i]=0;
		while(e-s>1 && !is_ok(fc[e-2],fc[e-1],p))	e--;
		fc[e++]=p;
	}
	for(i=2;i<=k;i++){	
		ns=ne=0;
		for(j=1;j<=n;j++)	dp[j]=0;
		for(j=i;j<=n;j++){
			while(e-s>1 && fc[s+1].idx<j && fc[s].a*sum[j]+fc[s].b<=fc[s+1].a*sum[j]+fc[s+1].b)	s++;
			dp[j]=fc[s].a*sum[j]+fc[s].b-sq(sum[j])+sum[n]*sum[j];
			if(i==k && ans<dp[j] && j!=n){
				ans=dp[j];
				F=j;
			}
			from[i][j]=fc[s].idx;
			p.a=sum[j];
			p.b=dp[j]-sum[n]*sum[j];
			p.idx=j;
			while(ne-ns>1 && !is_ok(nfc[ne-2],nfc[ne-1],p))	ne--;
			nfc[ne++]=p;
		}
		s=ns;
		e=ne;
		for(j=ns;j<ne;j++)	fc[j]=nfc[j];
	}
	while(F){
		anss[ansn++]=F;
		F=from[k--][F];
	}
	printf("%lld\n",ans);
	for(i=ansn-1;i>=0;i--)	printf("%lld ",anss[i]);
	printf("\n");
	return 0;
}

컴파일 시 표준 에러 (stderr) 메시지

sequence.cpp: In function 'int main()':
sequence.cpp:16:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%lld %lld",&n,&k);
  ~~~~~^~~~~~~~~~~~~~~~~~~
sequence.cpp:18:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%lld",&x);
   ~~~~~^~~~~~~~~~~
sequence.cpp:59:16: warning: 'F' may be used uninitialized in this function [-Wmaybe-uninitialized]
   F=from[k--][F];
     ~~~~~~~~~~~^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...