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());
    }
    
  • 相关阅读:
    Python时间戳
    vux x-input 清除按钮不起作用
    MySQL连接查询流程源码
    Linux下用的脚本
    TableCache设置过小造成MyISAM频繁损坏 与 把table_cache适当调小mysql能更快地工作
    批量导入数据到InnoDB表速度优化
    DBA面对新mysql环境
    (进阶篇)PHP+Mysql+jQuery找回密码
    (进阶篇)PHP实现用户注册后邮箱验证,激活帐号
    (实用篇)php官方微信接口大全(微信支付、微信红包、微信摇一摇、微信小店)
  • 原文地址:https://www.cnblogs.com/caowenbo/p/11852308.html
Copyright © 2011-2022 走看看