HDU-1003 Max Sum(클래식 DP)
2146 단어 HDU
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
하나의 수조sum,sum[i]의 의미를 정의합니다. a[i](i=3, 3으로 끝을 나타내는 모든 서열의 서열과 하나의 집합을 구성합니다. 이 집합의 최대 값은sum[i]입니다.
예, 하나, 둘, 셋.a[3]=3을 끝으로 하는 모든 서열의 서열과 집합은 {6,5,3}이므로sum[3]=6.sum의 상태 전이 방정식:sum[i]=max{sum[i-1]+a[i],a[i]}ans는 반드시sum[0···(k-1)] 중의 하나이다.시작 위치와 끝 위치를 기록해야 하기 때문에 s수 그룹을 도입하여sum의 서열의 시작 요소의 위치를 기록하고sum의 정의로sum[i]의 끝 위치는 i가 따로 기록하지 않아도 된다.
#include
#include
#include
#include
#include
#include
#include
#include
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[HDU] 4089 활성화 확률 DPdp[i][j]를 모두 i개인의 대기열인 Tomato가 j위 서버가 마비될 확률로 역추를 사용하면 우리는 상태 이동 방정식을 얻을 수 있다. i == 1 : dp[1][1] = dp[1][1] * p1 + dp[1]...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.