标签:hdu
http://acm.hdu.edu.cn/showproblem.php?pid=5074

2 5 3 83 86 77 15 93 35 86 92 49 3 3 3 1 2 10 5 36 11 68 67 29 82 30 62 23 67 35 29 2 22 58 69 67 93 56 11 42 29 73 21 19 -1 -1 5 -1 4 -1 -1 -1 4 -1
270 625
/**
* @author neko01
*/
//#pragma comment(linker, "/STACK:102400000,102400000")
#include <cstdio>
#include <cstring>
#include <string.h>
#include <iostream>
#include <algorithm>
#include <queue>
#include <vector>
#include <cmath>
#include <set>
#include <map>
using namespace std;
typedef long long LL;
#define min3(a,b,c) min(a,min(b,c))
#define max3(a,b,c) max(a,max(b,c))
#define pb push_back
#define mp(a,b) make_pair(a,b)
#define clr(a) memset(a,0,sizeof a)
#define clr1(a) memset(a,-1,sizeof a)
#define dbg(a) printf("%d\n",a)
typedef pair<int,int> pp;
const double eps=1e-9;
const double pi=acos(-1.0);
const int INF=0x3f3f3f3f;
const LL inf=(((LL)1)<<61)+5;
int a[55][55];
int dp[105][55];
int b[105];
int main()
{
int t;
scanf("%d",&t);
while(t--)
{
int n,m;
scanf("%d%d",&n,&m);
for(int i=1;i<=m;i++)
for(int j=1;j<=m;j++)
scanf("%d",&a[i][j]);
b[0]=0;
for(int i=1;i<=n;i++)
scanf("%d",&b[i]);
clr(dp);
for(int i=2;i<=n;i++)
{
if(b[i]!=-1)
{
if(b[i-1]==-1)
{
for(int j=1;j<=m;j++)
{
dp[i][b[i]]=max(dp[i-1][j]+a[j][b[i]],dp[i][b[i]]);
}
}
else
dp[i][b[i]]=dp[i-1][b[i-1]]+a[b[i-1]][b[i]];
}
else
{
if(b[i-1]==-1)
{
for(int j=1;j<=m;j++)
for(int k=1;k<=m;k++)
dp[i][j]=max(dp[i][j],dp[i-1][k]+a[k][j]);
}
else
for(int j=1;j<=m;j++)
dp[i][j]=max(dp[i][j],dp[i-1][b[i-1]]+a[b[i-1]][j]);
}
}
int ans=0;
if(b[n]!=-1) ans=dp[n][b[n]];
else
{
ans=dp[n][1];
for(int i=2;i<=m;i++)
ans=max(ans,dp[n][i]);
}
printf("%d\n",ans);
}
return 0;
}hdu5074 Hatsune Miku 2014鞍山现场赛E题 水dp
标签:hdu
原文地址:http://blog.csdn.net/neko01/article/details/40518069