시간 초과 처리 시간 복잡도 문제
Problem Description
Given a sequence a[1],a[2],a[3]......a[n], your job is to calculate the max sum of a sub-sequence. For example, given (6,-1,5,4,-7), the max sum in this sequence is 6 + (-1) + 5 + 4 = 14.
Input
The first line of the input contains an integer T(1<=T<=20) which means the number of test cases. Then T lines follow, each line starts with a number N(1<=N<=100000), then N integers followed(all the integers are between -1000 and 1000).
Output
For each test case, you should output two lines. The first line is "Case #:", # means the number of the test case. The second line contains three integers, the Max Sum in the sequence, the start position of the sub-sequence, the end position of the sub-sequence. If there are more than one result, output the first one. Output a blank line between two cases.
Sample Input
2
5 6 -1 5 4 -7
7 0 6 -1 1 -6 7 -5
Sample Output
Case 1:
14 1 4
Case 2:
7 1 6
Author
Ignatius.L
Recommend
We have carefully selected several similar problems for you: 1176 1087 1069 1058 1159
제목: 연속 서열의 최대 값과 출력의 최대 값과 끝에서 시작하는 위치를 구합니다.
사고방식: dp야, 연속으로 화해를 구하면 좋은 결과가 시간을 초과했어. 100000을 준 걸 발견했어. 두 개의 for순환을 보고하고 다른 사람의 처리 방법을 봤어...
코드를 보면 다음과 같습니다.
#include
#include
int a[100005];
int main()
{
int i,n,m,j,h,start,end,b;
int sum;
scanf("%d",&n);
for(i=1;i<=n;i++)
{
sum=-100000;//최대치
scanf("%d",&m);
b=0;//화해를 구하다
h=0;
start=0;
end=0;
for(j=0;j
scanf("%d",&a[j]);
b=b+a[j];
if(b>sum)
{
sum=b;
start=h;
end=j;
}
if(b<0)//이 단계는 매우 중요합니다. 이 단계까지 계산하면 0보다 작다는 것을 발견하면 다음 위치에서 다시 연속적으로 추가됩니다.
{
h=j+1;
b=0;
}
}
printf("Case %d:%d %d %d",i,sum,start+1,end+1);
if(i
printf("");
}
}
return 0;
}//
물문제를 보고 흥분하면 틀려요. 나중에 코드를 치기 전에 곰곰이 생각해 보고 똑똑히 생각해서 해요...
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Codeforces 106 Buns【다중 가방】제목: Lavrenty, a baker, is going to make several buns with stuffings and sell them. Lavrenty knows that he has ai grams l...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.