zoukankan      html  css  js  c++  java
  • CodeForces

    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
    ", 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
    ", ans);
        for (int i = 1; i <= ans; i++)
            printf("%d ", p[i]);
        puts("");
        if(ans == cont)
            return puts("0"),0;
        printf("%lld
    ", cont - ans);
        for (int i = 1; i <= cont; i++)
        {
            if(r[i].x == 0 || r[i].y == 0)
                continue;
            printf("%d %d
    ", r[i].x, r[i].y);
        }
        return 0;
    }
  • 相关阅读:
    时寒冰先生文章转载
    [转]迭代经理是什么角色
    [转]如何抉择重构?
    面面俱到:SQL SERVER 2008主数据管理
    [转]用户故事【任务分解】和软件开发不得不说的故事
    读书心得3:去功利化&推荐两本书 转时寒冰
    沟通模式中的方式与过程
    系统分析与设计笔记 -系统类型
    加入敏捷团队宣言
    [转]敏捷进展学习 新项目Sprint
  • 原文地址:https://www.cnblogs.com/lunatic-talent/p/12798611.html
Copyright © 2011-2022 走看看