前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >CodeForces - 1245 D - Shichikuji and Power Grid

CodeForces - 1245 D - Shichikuji and Power Grid

作者头像
风骨散人Chiam
发布2020-10-28 11:29:37
5190
发布2020-10-28 11:29:37
举报
文章被收录于专栏:CSDN旧文CSDN旧文

Shichikuji is the new resident deity of the South Black Snail Temple. Her first job is as follows:

There are nn new cities located in Prefecture X. Cities are numbered from 11 to nn. City ii is located xixi km North of the shrine and yiyi km East of the shrine. It is possible that (xi,yi)=(xj,yj)(xi,yi)=(xj,yj) even when i≠ji≠j.

Shichikuji must provide electricity to each city either by building a power station in that city, or by making a connection between that city and another one that already has electricity. So the City has electricity if it has a power station in it or it is connected to a City which has electricity by a direct connection or via a chain of connections.

  • Building a power station in City ii will cost cici yen;
  • Making a connection between City ii and City jj will cost ki+kjki+kj yen per km of wire used for the connection. However, wires can only go the cardinal directions (North, South, East, West). Wires can cross each other. Each wire must have both of its endpoints in some cities. If City ii and City jj are connected by a wire, the wire will go through any shortest path from City ii to City jj. Thus, the length of the wire if City ii and City jj are connected is |xi−xj|+|yi−yj||xi−xj|+|yi−yj| km.

Shichikuji wants to do this job spending as little money as possible, since according to her, there isn't really anything else in the world other than money. However, she died when she was only in fifth grade so she is not smart enough for this. And thus, the new resident deity asks for your help.

And so, you have to provide Shichikuji with the following information: minimum amount of yen needed to provide electricity to all cities, the cities in which power stations will be built, and the connections to be made.

If there are multiple ways to choose the cities and the connections to obtain the construction of minimum price, then print any of them.

Input

First line of input contains a single integer nn (1≤n≤20001≤n≤2000) — the number of cities.

Then, nn lines follow. The ii-th line contains two space-separated integers xixi (1≤xi≤1061≤xi≤106) and yiyi (1≤yi≤1061≤yi≤106) — the coordinates of the ii-th city.

The next line contains nn space-separated integers c1,c2,…,cnc1,c2,…,cn (1≤ci≤1091≤ci≤109) — the cost of building a power station in the ii-th city.

The last line contains nn space-separated integers k1,k2,…,knk1,k2,…,kn (1≤ki≤1091≤ki≤109).

Output

In the first line print a single integer, denoting the minimum amount of yen needed.

Then, print an integer vv — the number of power stations to be built.

Next, print vv space-separated integers, denoting the indices of cities in which a power station will be built. Each number should be from 11 to nn and all numbers should be pairwise distinct. You can print the numbers in arbitrary order.

After that, print an integer ee — the number of connections to be made.

Finally, print ee pairs of integers aa and bb (1≤a,b≤n1≤a,b≤n, a≠ba≠b), denoting that a connection between City aa and City bb will be made. Each unordered pair of cities should be included at most once (for each (a,b)(a,b) there should be no more (a,b)(a,b) or (b,a)(b,a) pairs). You can print the pairs in arbitrary order.

If there are multiple ways to choose the cities and the connections to obtain the construction of minimum price, then print any of them.

Examples

Input

3
2 3
1 1
3 2
3 2 3
3 2 3

Output

8
3
1 2 3 
0

Input

3
2 1
1 2
3 3
23 2 23
3 2 3

Output

27
1
2 
2
1 2
2 3

Note

For the answers given in the samples, refer to the following diagrams (cities with power stations are colored green, other cities are colored blue, and wires are colored red):

For the first example, the cost of building power stations in all cities is 3+2+3=83+2+3=8. It can be shown that no configuration costs less than 8 yen.

For the second example, the cost of building a power station in City 2 is 2. The cost of connecting City 1 and City 2 is 2⋅(3+2)=102⋅(3+2)=10. The cost of connecting City 2 and City 3 is 3⋅(2+3)=153⋅(2+3)=15. Thus the total cost is 2+10+15=272+10+15=27. It can be shown that no configuration costs less than 27 yen.

这个题,先想朴素的算法,就是曼哈顿距离最小生成树,但是至少建一个电站,然后要做多少次最小生成树,对于三个点,建一个的时候有3种情况,两个电站3种,3电站3种,然后情况挺多的,点这么多,那么这样必然超时,我们建立超级源点,源点到每个点的距离设置为每个点建电站的权值,然后一遍最小生成树即可,然后把边输出完事了,如果权值等于每个点建电站的权值和,那就是没有边,反正任意一种即可。然后完了!

#include <bits/stdc++.h>
using namespace std;
const int MAXN = 5000000 + 10;
const int MAXV = 2000 + 10;
typedef long long ll;
struct edge
{
    int u, v;
    ll w;// 起点,终点,权值
} e[MAXN];
struct node
{
    int x, y;
} t[MAXV], r[MAXV];
ll c[MAXV], k[MAXV];
int cont;
bool cmp(edge a, edge b)
{
    return a.w < b.w;
}
int father[MAXV], n, cnt, dd, p[MAXV];;
ll ans;
int find(int x)
{
    return father[x] == x ? x : father[x] = find(father[x]);
}
int main()
{
    scanf("%d", &n);
    cont = 0;
    dd = 0;
    for (int i = 1; i <= n; i++)
        father[i] = i;
    for (int i = 1; i <= n; i++)
    {
        scanf("%d %d", &t[i].x, &t[i].y);
    }
    for (int i = 1; i <= n; i++)
        scanf("%lld", &c[i]);
    for (int i = 1; i <= n; i++)
        scanf("%lld", &k[i]);
    for (int i = 1; i <= n; i++)
    {
        for (int j = 1; j < i; j++)
        {
            e[++dd].u = i;
            e[dd].v = j;
            e[dd].w = (abs(t[i].x - t[j].x) + abs(t[i].y - t[j].y)) * (k[i] + k[j]);
        }
    }
    for (int i = 1; i <= n; i++)
    {
        e[++dd].u = 0;
        e[dd].v = i;
        e[dd].w = c[i];
    }
    sort(e + 1, e + 1 + dd, cmp);
    for (int i = 1; i <= dd; i++)
    {
        int u = e[i].u, v = e[i].v;
        ll w = e[i].w;
        int fu = find(u), fv = find(v);
        if(fu == fv)
            continue;
        ++cont;
        r[cont].x = u;
        r[cont].y = v;
        ans += w;
        father[fv] = fu;
        cnt++;
        if(cnt == n)
            break;
    }
    printf("%lld\n", ans);
    ans = 0;
    for (int i = 1; i <= cont; i++)
    {
        if(r[i].x == 0 || r[i].y == 0)
        {
            ans++;
            p[ans] = r[i].x + r[i].y;
        }
    }
    printf("%lld\n", ans);
    for (int i = 1; i <= ans; i++)
        printf("%d ", p[i]);
    puts("");
    if(ans == cont)
        return puts("0"),0;
    printf("%lld\n", cont - ans);
    for (int i = 1; i <= cont; i++)
    {
        if(r[i].x == 0 || r[i].y == 0)
            continue;
        printf("%d %d\n", r[i].x, r[i].y);
    }
    return 0;
}
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2019-11-06 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
相关产品与服务
对象存储
对象存储(Cloud Object Storage,COS)是由腾讯云推出的无目录层次结构、无数据格式限制,可容纳海量数据且支持 HTTP/HTTPS 协议访问的分布式存储服务。腾讯云 COS 的存储桶空间无容量上限,无需分区管理,适用于 CDN 数据分发、数据万象处理或大数据计算与分析的数据湖等多种场景。
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档