比赛 |
20110724 |
评测结果 |
RRRRRRRRRR |
题目名称 |
并行 |
最终得分 |
0 |
用户昵称 |
PurpleShadow |
运行时间 |
0.000 s |
代码语言 |
C++ |
内存使用 |
0.00 MiB |
提交时间 |
2011-07-24 10:33:54 |
显示代码纯文本
#include <cstdio>
#include <algorithm>
#include <cstring>
using namespace std;
const int N=101;
int n,p[N],r[N];
int dp[2][N];
bool init()
{
scanf("%d",&n);
if (!n) return 0;
int i;
for (i=1;i<=n;++i)
scanf("%d",p+i);
sort(p+1,p+n+1);
for (i=1;i<n;++i)
scanf("%d",r+i);
sort(r+1,r+n);
return 1;
}
inline int dis(const int &a,const int &b)
{return abs(p[a]-r[b]);}
void slove()
{
memset(dp,0x3f,sizeof(dp));
dp[0][0]=0;
int i,j;
int *x=dp[1],*y=dp[0];
for (i=1;i<=n;++i)
{
for (j=1;j<=i&&j<n;++j)
x[j]=min(y[j-1]+dis(i,j),y[j]+dis(i,j));
swap(x,y);
}
printf("%d\n",y[n-1]);
}
int main()
{
freopen("1.in","r",stdin);
freopen("1.out","w",stdout);
while (init())
slove();
return 0;
}