poj 3375 Network Connection

题目链接:http://poj.org/problem?id=3375

题目大意及思路:将n台电脑插到m个端口上,使距离最小,dp方程很容易想到,但直接计算会超时,所以需要优化,即对于一台电脑我们肯定想让它插到最近的端口上,但是为了总距离最短,可能这些端口被其它电脑占用了,又因为总电脑数为n,所以它的左右两端最多有n个端口被占用,所以只要计算它插到[pos-n,pos+n]的区间即可。

#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
#define inf 0x3f3f3f3f
#define Max 110
int max(int a,int b)
{
	return a>b?a:b;
}
inline int min(int a,int b)
{
	return aa[i])
                    break;
            }
            st2=max(i,pos-n-10);
            ed2=min(m,pos+n+10);
            dp[1-tmp][st2-1]=inf;
            for(j=st2;j<=ed2;j++)
            {
               // dp[1-tmp][j]=inf;
                if(j>=st1&&j<=ed1)
                dp[1-tmp][j]=min(dp[tmp][j-1]+abs(a[i]-b[j]),dp[1-tmp][j-1]);
                else
                    dp[1-tmp][j]=min(dp[tmp][ed1]+abs(a[i]-b[j]),dp[1-tmp][j-1]);
               // printf("i %d j %d dp %d\n",i,j,dp[1-tmp][j]);
            }
            st1=st2;
            ed1=ed2;
            tmp=1-tmp;
        }
        int ans=inf;
        printf("%d\n",dp[tmp][ed1]);
}


你可能感兴趣的:(poj 3375 Network Connection)