神!他!妈!
虽然乡间小路奇特的布局使得从i号商店走到j号商店的最短路不一定是直接连接这两个商店的那条,但约翰并不会选择那些会经过其他商店的路线,只是直接走到目标商店等待礼物的送出.
被坑死。。。
首先按礼物顺序排序,dp[i]表示一定取第I个获得的最多礼物
然后n^2转移即可
#include <iostream>
#include <cstdio>
#include <cmath>
#include <algorithm>
#include <queue>
#include <string>
#include <map>
#include <cstring>
#include <ctime>
#include <vector>
#define inf 1e9
#define ll long long
#define maxn 20010
#define For(i,j,k) for(ll i=j;i<=k;i++)
#define Dow(i,j,k) for(ll i=k;i>=j;i--)
using namespace std;
inline void read(int &tx){ ll x=0,f=1;char ch=getchar(); while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();} while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();} tx=x*f; }
inline void write(ll x){ if (x<0) putchar('-'),x=-x; if (x>=10) write(x/10); putchar(x%10+'0'); }
inline void writeln(ll x){write(x);puts("");}
int n,ans,f[1001][1001],dp[1001];
struct gift{int t,p;}g[2001];
inline bool cmp(gift x,gift y){return x.t<y.t;}
int main()
{
read(n);
For(i,1,n)read(g[i].t),g[i].p=i;
For(i,1,n)For(j,1,n)read(f[i][j]);
sort(g+1,g+n+1,cmp);
For(i,1,n)
{
if(f[1][g[i].p]<=g[i].t)dp[i]=1;
For(j,1,i-1)
{
if(f[g[j].p][g[i].p]<=g[i].t-g[j].t)
dp[i]=max(dp[i],dp[j]+1);
}
ans=max(ans,dp[i]);
}
writeln(ans);
}