답안 #215885

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
215885 2020-03-26T12:06:35 Z T0p_ 수열 (APIO14_sequence) C++14
39 / 100
2000 ms 5496 KB
#include<bits/stdc++.h>
using namespace std;

int back[202][100100];
long long arr[100100], qs[100100], dp[202][100100];
stack<int> p;

int main()
{
	int n, m;
	scanf(" %d %d",&n,&m);
	for(int i=1 ; i<=n ; i++)
	{
		scanf(" %lld",&arr[i]); 
		qs[i] = arr[i] + qs[i-1];
	}
	for(int i=1 ; i<=m ; i++)
	{
		for(int j=i ; j<=n ; j++)
		{
			int pos;
			for(int k=i-1 ; k<j ; k++)
			{
				long long nv = dp[i-1][k] + (qs[j] - qs[k]) * (qs[n] - qs[j]);
				if(nv > dp[i][j])
				{
					dp[i][j] = nv;
					pos = k;
				}
			}
			back[i][j] = pos;
		}
	}
	int pos;
	long long Mval = 0;
	for(int i=m ; i<=n ; i++)
	{
		if(dp[m][i] > Mval)
		{
			Mval = dp[m][i];
			pos = i;
		}
	}
	for(int i=m ; i>0 ; i--)
	{
		p.push(pos);
		pos = back[i][pos];
	}
	printf("%lld\n",Mval);
	while(!p.empty())
	{
		printf("%d ",p.top());
		p.pop();
	}
    return 0;
}

Compilation message

sequence.cpp: In function 'int main()':
sequence.cpp:11:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf(" %d %d",&n,&m);
  ~~~~~^~~~~~~~~~~~~~~~
sequence.cpp:14:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf(" %lld",&arr[i]); 
   ~~~~~^~~~~~~~~~~~~~~~~
sequence.cpp:47:20: warning: 'pos' may be used uninitialized in this function [-Wmaybe-uninitialized]
   pos = back[i][pos];
         ~~~~~~~~~~~^
sequence.cpp:31:15: warning: 'pos' may be used uninitialized in this function [-Wmaybe-uninitialized]
    back[i][j] = pos;
    ~~~~~~~~~~~^~~~~
# 결과 실행 시간 메모리 Grader output
1 Correct 5 ms 384 KB contestant found the optimal answer: 108 == 108
2 Correct 5 ms 384 KB contestant found the optimal answer: 999 == 999
3 Incorrect 5 ms 384 KB Integer 0 violates the range [1, 1]
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 5 ms 384 KB contestant found the optimal answer: 1093956 == 1093956
2 Correct 5 ms 384 KB contestant found the optimal answer: 302460000 == 302460000
3 Correct 5 ms 896 KB contestant found the optimal answer: 122453454361 == 122453454361
4 Correct 5 ms 384 KB contestant found the optimal answer: 93663683509 == 93663683509
5 Correct 5 ms 512 KB contestant found the optimal answer: 1005304678 == 1005304678
6 Correct 5 ms 512 KB contestant found the optimal answer: 933702 == 933702
7 Correct 5 ms 640 KB contestant found the optimal answer: 25082842857 == 25082842857
8 Correct 5 ms 512 KB contestant found the optimal answer: 687136 == 687136
9 Correct 5 ms 384 KB contestant found the optimal answer: 27295930079 == 27295930079
10 Correct 5 ms 512 KB contestant found the optimal answer: 29000419931 == 29000419931
# 결과 실행 시간 메모리 Grader output
1 Correct 5 ms 372 KB contestant found the optimal answer: 610590000 == 610590000
2 Correct 5 ms 384 KB contestant found the optimal answer: 311760000 == 311760000
3 Correct 8 ms 2560 KB contestant found the optimal answer: 1989216017013 == 1989216017013
4 Correct 5 ms 384 KB contestant found the optimal answer: 1499437552673 == 1499437552673
5 Correct 8 ms 2048 KB contestant found the optimal answer: 1019625819 == 1019625819
6 Correct 8 ms 2432 KB contestant found the optimal answer: 107630884 == 107630884
7 Correct 8 ms 2688 KB contestant found the optimal answer: 475357671774 == 475357671774
8 Correct 7 ms 896 KB contestant found the optimal answer: 193556962 == 193556962
9 Correct 6 ms 640 KB contestant found the optimal answer: 482389919803 == 482389919803
10 Correct 6 ms 1024 KB contestant found the optimal answer: 490686959791 == 490686959791
# 결과 실행 시간 메모리 Grader output
1 Correct 7 ms 384 KB contestant found the optimal answer: 21503404 == 21503404
2 Correct 6 ms 380 KB contestant found the optimal answer: 140412195 == 140412195
3 Correct 100 ms 4472 KB contestant found the optimal answer: 49729674225461 == 49729674225461
4 Correct 7 ms 384 KB contestant found the optimal answer: 37485571387523 == 37485571387523
5 Correct 130 ms 4472 KB contestant found the optimal answer: 679388326 == 679388326
6 Correct 116 ms 3960 KB contestant found the optimal answer: 4699030287 == 4699030287
7 Correct 100 ms 4600 KB contestant found the optimal answer: 12418819758185 == 12418819758185
8 Correct 102 ms 4600 KB contestant found the optimal answer: 31093317350 == 31093317350
9 Correct 38 ms 1272 KB contestant found the optimal answer: 12194625429236 == 12194625429236
10 Correct 75 ms 2168 KB contestant found the optimal answer: 12345131038664 == 12345131038664
# 결과 실행 시간 메모리 Grader output
1 Correct 284 ms 888 KB contestant found the optimal answer: 1818678304 == 1818678304
2 Correct 154 ms 980 KB contestant found the optimal answer: 1326260195 == 1326260195
3 Execution timed out 2099 ms 5496 KB Time limit exceeded
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 2065 ms 3144 KB Time limit exceeded
2 Halted 0 ms 0 KB -