HDU - 1003 Max Sum(최대 연속 및)
제목:
n개 수에서 연속된 수를 찾아 그 중의 가장 큰 합을 출력하고 기점, 종점을 출력한다
분석:
이 값보다 크면 현재 연속 세그먼트가 추가되고 끝점이 업데이트됩니다.
더하기 후 이 상점의 값보다 작으면 현재 연속 세그먼트를 종료하고 이 점을 시작점, 끝점으로 업데이트합니다
핵심:
dp[i] = max(a[i], dp[i-1]+a[i]);
코드:
#include <stdio.h>
#include <iostream>
#include <string.h>
#include <string>
#include <math.h>
#include <algorithm>
#include <queue>
#include <stack>
#include <map>
#include <vector>
#include <time.h>
using namespace std;
int a[100000+10];
int main()
{
//freopen("a.txt", "r", stdin);
int t, n, i, j, Case = 1;
scanf("%d", &t);
while(t--)
{
scanf("%d", &n);
for(i = 1; i<=n; i++)
{
scanf("%d", &a[i]);
}
int begin=1, end=1, x=1, y=1;
int sum = 0, ans = a[1]-1;
for(i = 1; i<=n; i++)
{
if(sum + a[i] >= a[i])
{
sum += a[i];
end = i;
}
else
{
sum = a[i];
begin = i;
end = i;
}
if(ans < sum)
{
ans = sum;
x = begin;
y = end;
}
}
if(Case>1)printf("
");
printf("Case %d:
", Case++);
printf("%d %d %d
", ans, x, y);
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
leetcode || 112、Path Sumproblem: Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.