HDU 5115 Dire Wolf interval dp

Source: Internet
Author: User
Tags cas

Dire Wolf

problem DescriptionDire Wolves, also known as Dark Wolves, is extraordinarily large and powerful wolves. Many, if not all, Dire wolves appear to originate from Draenor.
Dire wolves look like normal wolves, but these creatures is of nearly twice the size. These powerful beasts, 8-9 feet long and weighing 600-800 pounds, is the most well-known ORC mounts. As tall as a man, these great wolves has a long tusked jaws that look like they could snap an iron bar. They has burning red eyes. Dire wolves is mottled gray or black in color. Dire wolves thrive in the northern regions of Kalimdor and in Mulgore.
Dire Wolves is efficient pack hunters that kill anything they catch. They prefer to attack in packs, surrounding and flanking a foe when they can.
-wowpedia, Your Wiki Guide for the world of WARCRA

Matt, an adventurer from the Eastern kingdoms, meets a pack of dire wolves. There is N wolves standing in a row (numbered with 1 to N from left to right). Matt has the defeat all of them to survive.

Once Matt defeats a dire wolf, he'll take some damage which are equal to the wolf's current attack. As gregarious beasts, each dire wolf I can increase their adjacent wolves ' attack by BI. Thus, each dire wolf I's current attack consists of the II parts, its basic attack AI and the extra attack provided by the CU Rrent adjacent wolves. The increase of attack is temporary. Once A wolf is defeated, its adjacent wolves would no longer get extra attack from it. However, these, wolves (if exist) would become adjacent to each and now.

For example, suppose there is 3 dire wolves standing in a row, whose basic attacks Ai is (3, 5, 7), respectively. The extra attacks bi they can provide is (8, 2, 0). Thus, the current attacks of them is (5, 13, 9). If Matt defeats the second Wolf first, he'll get points of damage and the Alive Wolves ' current attacks become (3, 15 ).

As an alert and resourceful adventurer, Matt can decide the order of the dire wolves he defeats. Therefore, he wants to know the least damage he had to take to defeat all the wolves.

Input

The first line contains only one integer T, which indicates the number of test cases. For each test case, the first line contains only one integer N (2≤n≤200).

The second line contains N integers ai (0≤ai≤100000) and denoting the basic attack of each dire wolf.

The third line contains N integers bi (0≤bi≤50000), denoting the extra attack each dire wolf can provide.

OutputFor each test case, output a single line "Case #x: Y", where x was the case number (starting from 1), and Y is the least damage Matt needs to take.

Sample Input233 5 78 2 0101 3 5 7 9 2 4 6 8 109 4 1 2 1 2 1 4 5 1 Sample OutputCase #1:17Case #2:74 HintIn the-rst sample, Matt defeats the dire wolves from left to right. He takes 5 + 5 + 7 = Points of damage which is the least damage he have to take.

Test instructions

Give you the N-head wolf, each wolf has a point defense and can provide a B-point defense to the neighbor until the living wolf, ask you how much the minimum cost, you can kill all the wolves

Exercises

N is only 200

Direct DP

DP[L][R] L to r cost

Transfer, consider killing wolves.

#include <iostream>#include<cstring>#include<cstdio>#include<cmath>#include<algorithm>using namespacestd;Const intN = 1e6+Ten, M = 2e2+ One, inf = 2e9, mod = 1e9+7;intDp[m][m],t,a[n],b[n],n;intMain () {scanf ("%d",&T); intCAS =1;  while(t--) {scanf ("%d",&N);  for(intI=1; i<=n;i++) scanf ("%d",&A[i]);  for(intI=1; i<=n;i++) scanf ("%d",&B[i]); B[n+1]=b[0]=0; Memset (DP,127,sizeof(DP));  for(intI=1; i<=n;i++) dp[i][i]=a[i]+b[i+1]+b[i-1];  for(intL=2; l<=n;l++)        {             for(intI=1; i+l-1<=n;i++)            {                intr = i+l-1;  for(intk=i+1; k<=r;k++) Dp[i][r]= Min (dp[i][r],dp[i][k-1]+dp[k][r]-b[k-1]+b[i-1]), Dp[i][r]= Min (dp[i][r],dp[i][k-1]+dp[k][r]-b[k]+b[r+1]); }} printf ("Case #%d:%d\n", cas++,dp[1][n]); }    return 0;}

HDU 5115 Dire Wolf interval dp

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.