시간 초과 처리 시간 복잡도 문제


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;
}//
물문제를 보고 흥분하면 틀려요. 나중에 코드를 치기 전에 곰곰이 생각해 보고 똑똑히 생각해서 해요...

좋은 웹페이지 즐겨찾기