zoukankan      html  css  js  c++  java
  • HDU3440 House Man (差分约束)

    In Fuzhou, there is a crazy super man. He can’t fly, but he could jump from housetop to housetop. Today he plans to use N houses to hone his house hopping skills. He will start at the shortest house and make N-1 jumps, with each jump taking him to a taller house than the one he is jumping from. When finished, he will have been on every house exactly once, traversing them in increasing order of height, and ending up on the tallest house. 
    The man can travel for at most a certain horizontal distance D in a single jump. To make this as much fun as possible, the crazy man want to maximize the distance between the positions of the shortest house and the tallest house. 
    The crazy super man have an ability—move houses. So he is going to move the houses subject to the following constraints: 
    1. All houses are to be moved along a one-dimensional path. 
    2. Houses must be moved at integer locations along the path, with no two houses at the same location. 
    3. Houses must be arranged so their moved ordering from left to right is the same as their ordering in the input. They must NOT be sorted by height, or reordered in any way. They must be kept in their stated order. 
    4. The super man can only jump so far, so every house must be moved close enough to the next taller house. Specifically, they must be no further than D apart on the ground (the difference in their heights doesn't matter). 
    Given N houses, in a specified order, each with a distinct integer height, help the super man figure out the maximum possible distance they can put between the shortest house and the tallest house, and be able to use the houses for training. 

    InputIn the first line there is an integer T, indicates the number of test cases.(T<=500)
    Each test case begins with a line containing two integers N (1 ≤ N ≤ 1000) and D (1 ≤ D ≤1000000). The next line contains N integer, giving the heights of the N houses, in the order that they should be moved. Within a test case, all heights will be unique. 
    OutputFor each test case , output “Case %d: “first where d is the case number counted from one, then output a single integer representing the maximum distance between the shortest and tallest house, subject to the constraints above, or -1 if it is impossible to lay out the houses. Do not print any blank lines between answers.Sample Input

    3
    4 4 
    20 30 10 40 
    5 6 
    20 34 54 10 15 
    4 2 
    10 20 16 13 

    Sample Output

    Case 1: 3
    Case 2: 3
    Case 3: -1

    题意:某胡建人,从最矮的楼依此按楼的高度,一个个的跳完所有楼,最后停在最高的楼。问最高的楼(终点)和最矮的楼(起点)最远可以隔多远。需要满足每一次跳跃不超过D。注意,起点在终点左边才成立。所以,必须保证位置关系,不然是错的。

    思路:假设起点再终点左边。那么向左边走(负),越近越好(负数的绝对值越小,即越大);向右走(正),越远越好(越大越好)。

               即是求最大值,用最短路算法,建图:T <= S + dist。

    #include<cmath>
    #include<queue>
    #include<cstdio>
    #include<cstdlib>
    #include<cstring>
    #include<iostream>
    #include<algorithm>
    using namespace std;
    const int maxn=500000;
    const int inf=1000000000;
    struct in { int ht,op; } s[maxn];
    bool cmp(in a,in b){ return a.ht<b.ht;}
    int Laxt[maxn],Next[maxn],To[maxn],Len[maxn],cnt,n;
    int dis[maxn],vis[maxn],inq[maxn];
    int S,E;
    void update()
    {
        cnt=0;
        memset(Laxt,0,sizeof(Laxt));
        memset(vis,0,sizeof(vis));
        memset(inq,0,sizeof(inq));
    }
    void add(int u,int v,int d)
    {
        Next[++cnt]=Laxt[u];
        Laxt[u]=cnt;
        To[cnt]=v;
        Len[cnt]=d;
    }
    bool spfa()
    {
        for(int i=0;i<=n+1;i++)  dis[i]=inf;
        queue<int>q;
        q.push(S); dis[S]=0; inq[S]=1;
        while(!q.empty()){
            int u=q.front(); q.pop(); inq[u]=0;
            for(int i=Laxt[u];i;i=Next[i]){
                int v=To[i];
                if(dis[v]>dis[u]+Len[i]){
                    dis[v]=dis[u]+Len[i];
                    if(!inq[v]){
                       inq[v]=1;
                       vis[v]++;
                       q.push(v);
                       if(vis[v]>n+1) return false;
                    }
                }
            }
        } return true;
    }
    int main()
    {
        int T,i,d,Case=0;
        scanf("%d",&T);
        while(T--){
            scanf("%d%d",&n,&d);
            update();
            for(i=1;i<=n;i++) scanf("%d",&s[i].ht), s[i].op=i;
            sort(s+1,s+n+1,cmp);
            for(i=1;i<n;i++){
                add(i+1,i,-1);
                if(s[i+1].op>s[i].op) add(s[i].op,s[i+1].op,d);
                else add(s[i+1].op,s[i].op,d);
            }
            S=s[1].op; E=s[n].op;
            if(S>E) swap(S,E);   //才符合最远,左起右终。 
            printf("Case %d: ",++Case);
            if(spfa()) printf("%d
    ",dis[E]);
            else printf("-1
    ");
        } return 0;
    }
    //求最长,小于,最短路算法。 
  • 相关阅读:
    leetcode 刷题日志 2018-03-26
    WebForms UnobtrusiveValidationMode 需要“jquery”ScriptResourceMapping
    sublime wrong
    SSM框架使用-wrong
    C++设计实现算法时易犯错误
    CodeBlocks wrong
    leetcode 刷题日志 2018-3-28
    CountDownLatch
    类加载器和双亲委派
    GC的一个面试题
  • 原文地址:https://www.cnblogs.com/hua-dong/p/8438152.html
Copyright © 2011-2022 走看看