Description
Farmer John has a pig farm near town A. He wants to visit his friend living in town B. During this journey he will visit n small villages so he decided to earn some money. He tooks n pigs and plans to sell one pig in each village he visits.
Pork prices in villages are different, in the j-th village the people would buy a pork at pj rubles per kilogram. The distance from town A to the j-th village along the road to town B is dj kilometers.
Pigs have different weights. Transporting one kilogram of pork per one kilometer of the road needs t rubles for addition fuel.
Help John decide, which pig to sell in each town in order to earn as much money as possible.
Input
The first line of the input file contains integer numbers n (1 ≤ n ≤ 1000) and t (1 ≤ t ≤ 109). The second line contains n integer numbers wi (1 ≤ wi ≤ 109) — the weights of the pigs. The third line contains n integer numbersdj (1 ≤ dj ≤ 109) — the distances to the villages from the town A. The fourth line contains n integer numbers pj (1 ≤ pj ≤ 109) — the prices of pork in the villages.
Output
Output n numbers, the j-th number is the number of pig to sell in the j-th village. The pigs are numbered from 1 in the order they are listed in the input file.
Sample Input
3 1 10 20 15 10 20 30 50 70 60
Sample Output
3 2 1
Source
/*32ms,216KB*/
#include <cstdio>
#include <algorithm>
using namespace std;
typedef long long ll;
struct Node
{
ll value;
int position;
bool operator < (const Node a) const
{
return value > a.value;
}
} weight[1010], earn[1010];
ll dis[1010];
int ans[1010];
int main(void)
{
int n;
ll t;///单位运费
while (~scanf("%d%lld", &n, &t))
{
for (int i = 1; i <= n; i++)
{
scanf("%lld", &weight[i].value);
weight[i].position = i;
}
for (int i = 1; i <= n; i++)
scanf("%lld", &dis[i]);
for (int i = 1; i <= n; i++)
{
ll x;
scanf("%lld", &x);
earn[i].value = x - dis[i] * t;
earn[i].position = i;
}
sort(weight + 1, weight + 1 + n);
sort(earn + 1, earn + 1 + n);
for (int i = 1; i <= n; i++)
ans[earn[i].position] = weight[i].position;
for (int i = 1; i < n; i++)
printf("%d ", ans[i]);
printf("%d\n", ans[n]);
}
return 0;
}

农民约翰计划通过在途经的村庄出售不同重量的猪来获取最大利润。每只猪在不同村庄的售价和运输成本各不相同,他需要合理安排出售顺序以最大化总收入。
1141

被折叠的 条评论
为什么被折叠?



