[HDU - 4597] 플레이 게임(dp)
2429 단어 HDU동적 계획 (dp)바둑 문제
Alice and Bob are playing a game. There are two piles of cards. There are N cards in each pile, and each card has a score. They take turns to pick up the top or bottom card from either pile, and the score of the card will be added to his total score. Alice and Bob are both clever enough, and will pick up cards to get as many scores as possible. Do you know how many scores can Alice get if he picks up first?
Input
The first line contains an integer T (T≤100), indicating the number of cases. Each case contains 3 lines. The first line is the N (N≤20). The second line contains N integer a i (1≤a i≤10000). The third line contains N integer b i (1≤bi≤10000).
Output
For each case, output an integer, indicating the most score Alice can get.
Sample Input
2
1
23
53
3
10 100 20
2 4 3
Sample Output
53
105
제목 대의:
Alice와 Bob은 두 개의 길이가 N인 정수 숫자 서열을 가지고 있는데, 매번 그들 두 사람은 그 중의 한 서열에서만 양쪽 중 하나를 선택해서 가져갈 수 있다.그들은 모두 가능한 한 큰 숫자의 합을 얻을 수 있기를 희망하고, 그들은 모두 충분히 총명하며, 매번 가장 좋은 전략을 선택한다.Alice가 먼저 선택해서 최종적으로 Alice가 받을 수 있는 숫자의 총계가 얼마냐고 물었다.
문제 해결 보고서:
그냥 dp[][][][]로 하면 돼요.
AC 코드:
#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에 따라 라이센스가 부여됩니다.