zoukankan      html  css  js  c++  java
  • Candies POJ

    During the kindergarten days, flymouse was the monitor of his class. Occasionally the head-teacher brought the kids of flymouse’s class a large bag of candies and had flymouse distribute them. All the kids loved candies very much and often compared the numbers of candies they got with others. A kid A could had the idea that though it might be the case that another kid B was better than him in some aspect and therefore had a reason for deserving more candies than he did, he should never get a certain number of candies fewer than B did no matter how many candies he actually got, otherwise he would feel dissatisfied and go to the head-teacher to complain about flymouse’s biased distribution.

    snoopy shared class with flymouse at that time. flymouse always compared the number of his candies with that of snoopy’s. He wanted to make the difference between the numbers as large as possible while keeping every kid satisfied. Now he had just got another bag of candies from the head-teacher, what was the largest difference he could make out of it?

    Input

    The input contains a single test cases. The test cases starts with a line with two integers N and M not exceeding 30 000 and 150 000 respectively. N is the number of kids in the class and the kids were numbered 1 through N. snoopy and flymouse were always numbered 1 and N. Then follow M lines each holding three integers AB and cin order, meaning that kid A believed that kid B should never get over c candies more than he did.

    Output

    Output one line with only the largest difference desired. The difference is guaranteed to be finite.

    Sample Input

    2 2
    1 2 5
    2 1 4

    Sample Output

    5

    Hint

    32-bit signed integer type is capable of doing all arithmetic.

    本题让让求的是最长路径

    而由于需要将每个条件都满足

    可以把条件转换为松弛条件

    从而转化为最短路的问题

    本题我用了spfa但是使用队列的话会超时

    之前听说有专门卡是spfa的数据可能这题就是了

    但有一个小技巧

    可以将spfa的队列操作改为stack

    这样恶心的数据可能就被弱化了 当然要卡应该还是会被卡掉

    //²î·ÖÔ¼Êø
    #include<stdio.h>
    #include<string.h>
    #include<algorithm>
    #include<iostream>
    #include<math.h>
    #include<queue>
    #include<stack>
    using namespace std;
    int n,m;
    int dis[30005];
    int first[150005];
    int nex[150005];
    int vis[30005];
    struct node
    {
        int to;
        int w;
    }a[150005];
    stack <int> q;
    int spfa()
    {
        int temp;
        dis[1]=0;
        q.push(1);
        vis[1]=1;
        while(q.size())
        {
            temp=q.top();
            q.pop();
            vis[temp]=0;
            for(int i=first[temp];i!=-1;i=nex[i])
            {
                if(dis[a[i].to]>dis[temp]+a[i].w)
                {
                    dis[a[i].to]=dis[temp]+a[i].w;
                    if(vis[a[i].to]==0)
                    {
                        vis[a[i].to]=1;
                        q.push(a[i].to);
                    }
                }
            }
        }
        return dis[n];
    }
    int main()
    {
        memset(vis,0,sizeof(vis));
        memset(first,-1,sizeof(first));
        memset(nex,-1,sizeof(nex));
        memset(dis,0x3f,sizeof(dis));
        scanf("%d%d",&n,&m);
        for(int i=1;i<=m;i++)
        {
            int temp1,temp2,temp3;
            scanf("%d%d%d",&temp1,&temp2,&temp3);
            nex[i]=first[temp1];
            first[temp1]=i;
            a[i].w=temp3;
            a[i].to=temp2;
        }
        printf("%d
    ", spfa());
    }
    
  • 相关阅读:
    BZOJ_2588_Spoj 10628. Count on a tree_树剖+主席树
    BZOJ_1901_Zju2112 Dynamic Rankings_树状数组+主席树
    单例模式
    JDBC连接数据库查询信息的步骤(提取成配置文件方式)
    JDBC访问数据库查询信息的步骤(硬编码格式)
    大数据
    accp
    递归
    struts2中Action到底是什么,怎么理解
    转发和重定向的区别(简单解释)
  • 原文地址:https://www.cnblogs.com/caowenbo/p/11852308.html
Copyright © 2011-2022 走看看