zoukankan      html  css  js  c++  java
  • HDU 4009 Transfer water

    Transfer water

    Time Limit: 3000ms
    Memory Limit: 65768KB
    This problem will be judged on HDU. Original ID: 4009
    64-bit integer IO format: %I64d      Java class name: Main
     
    XiaoA lives in a village. Last year flood rained the village. So they decide to move the whole village to the mountain nearby this year. There is no spring in the mountain, so each household could only dig a well or build a water line from other household. If the household decide to dig a well, the money for the well is the height of their house multiplies X dollar per meter. If the household decide to build a water line from other household, and if the height of which supply water is not lower than the one which get water, the money of one water line is the Manhattan distance of the two households multiplies Y dollar per meter. Or if the height of which supply water is lower than the one which get water, a water pump is needed except the water line. Z dollar should be paid for one water pump. In addition,therelation of the households must be considered. Some households may do not allow some other households build a water line from there house. Now given the 3‐dimensional position (a, b, c) of every household the c of which means height, can you calculate the minimal money the whole village need so that every household has water, or tell the leader if it can’t be done.
     

    Input

    Multiple cases. 
    First line of each case contains 4 integers n (1<=n<=1000), the number of the households, X (1<=X<=1000), Y (1<=Y<=1000), Z (1<=Z<=1000). 
    Each of the next n lines contains 3 integers a, b, c means the position of the i‐th households, none of them will exceeded 1000. 
    Then next n lines describe the relation between the households. The n+i+1‐th line describes the relation of the i‐th household. The line will begin with an integer k, and the next k integers are the household numbers that can build a water line from the i‐th household. 
    If n=X=Y=Z=0, the input ends, and no output for that. 
     

    Output

    One integer in one line for each case, the minimal money the whole village need so that every household has water. If the plan does not exist, print “poor XiaoA” in one line. 
     

    Sample Input

    2 10 20 30
    1 3 2
    2 4 1
    1 2
    2 1 2
    0 0 0 0

    Sample Output

    30
    Hint
    In 3‐dimensional space Manhattan distance of point A (x1, y1, z1) and B(x2, y2, z2) is |x2‐x1|+|y2‐y1|+|z2‐z1|.

    Source

     
    解题:这个虚拟根其实是有用的,因为至少要挖一个井,不然,光有管子有个卵用啊
     
     1 #include <bits/stdc++.h>
     2 using namespace std;
     3 const int maxn = 1010;
     4 const int INF = 0x3f3f3f3f;
     5 struct arc {
     6     int u,v,w;
     7     arc(int x = 0,int y = 0,int z = 0) {
     8         u = x;
     9         v = y;
    10         w = z;
    11     }
    12 } e[500000];
    13 struct Point {
    14     int x,y,z;
    15 } p[maxn];
    16 int pre[maxn],hs[maxn],vis[maxn],in[maxn];
    17 int calc(int a,int b) {
    18     return abs(p[a].x - p[b].x) + abs(p[a].y - p[b].y) + abs(p[a].z - p[b].z);
    19 }
    20 int DMST(int root,int n,int m,int ret = 0) {
    21     while(true) {
    22         for(int i = 0; i < n; ++i) {
    23             in[i] = INF;
    24             vis[i] = hs[i] = -1;
    25         }
    26         for(int i = 0; i < m; ++i) {
    27             if(e[i].u != e[i].v && e[i].w < in[e[i].v]) {
    28                 in[e[i].v] = e[i].w;
    29                 pre[e[i].v] = e[i].u;
    30             }
    31         }
    32         for(int i = 0; i < n; ++i)
    33             if(i != root && in[i] == INF) return -1;
    34         int cnt = in[root] = 0;
    35         for(int i = 0; i < n; ++i) {
    36             ret += in[i];
    37             int v = i;
    38             while(vis[v] != i && v != root && hs[v] == -1) {
    39                 vis[v] = i;
    40                 v = pre[v];
    41             }
    42             if(v != root && hs[v] == -1) {
    43                 for(int u = pre[v]; u != v; u = pre[u]) hs[u] = cnt;
    44                 hs[v] = cnt++;
    45             }
    46         }
    47         if(!cnt) break;
    48         for(int i = 0; i < n; ++i)
    49             if(hs[i] == -1) hs[i] = cnt++;
    50         for(int i = 0; i < m; ++i) {
    51             int u = e[i].u;
    52             int v = e[i].v;
    53             e[i].u = hs[u];
    54             e[i].v = hs[v];
    55             if(e[i].u != e[i].v) e[i].w -= in[v];
    56         }
    57         n = cnt;
    58         root = hs[root];
    59     }
    60     return ret;
    61 }
    62 int main() {
    63     int n,m,X,Y,Z;
    64     while(scanf("%d%d%d%d",&n,&X,&Y,&Z),n||X||Y||Z) {
    65         for(int i = 1; i <= n; ++i)
    66             scanf("%d%d%d",&p[i].x,&p[i].y,&p[i].z);
    67         m = 0;
    68         for(int i = 1,k,u; i <= n; ++i) {
    69             scanf("%d",&k);
    70             while(k--) {
    71                 scanf("%d",&u);
    72                 int tmp = calc(i,u)*Y;
    73                 if(p[i].z < p[u].z) tmp += Z;
    74                 e[m++] = arc(i,u,tmp);
    75             }
    76         }
    77         for(int i = 1; i <= n; ++i)
    78             e[m++] = arc(0,i,p[i].z*X);
    79         printf("%d
    ",DMST(0,n + 1,m));
    80     }
    81     return 0;
    82 }
    View Code
  • 相关阅读:
    线性支持向量机分类
    字符识别--模型集成
    字符识别--模型的训练与验证
    反射案例当中pro.load()报错问题的解决
    字节码对象功能
    BS案例服务器之系统找不到指定路径
    内部类接口实现线程
    多个异常,一次捕获,多次处理
    Objects.requireNonNull
    intellij idea编译java出现kotlin:connecting to daemon
  • 原文地址:https://www.cnblogs.com/crackpotisback/p/4761871.html
Copyright © 2011-2022 走看看