zoukankan      html  css  js  c++  java
  • zoj Burn the Linked Camp (查分约束)

    Burn the Linked Camp

    Time Limit: 2 Seconds      Memory Limit: 65536 KB

    It is well known that, in the period of The Three Empires, Liu Bei, the emperor of the Shu Empire, was defeated by Lu Xun, a general of the Wu Empire. The defeat was due to Liu Bei's wrong decision that he divided his large troops into a number of camps, each of which had a group of armies, and located them in a line. This was the so-called "Linked Camps".

    Let's go back to that time. Lu Xun had sent many scouts to obtain the information about his enemy. From his scouts, he knew that Liu Bei had divided his troops into n camps, all of which located in a line, labeled by 1..n from left to right. The ith camp had a maximum capacity of Ci soldiers. Furthermore, by observing the activities Liu Bei's troops had been doing those days, Lu Xun could estimate the least total number of soldiers that were lived in from the ith to the jth camp. Finally, Lu Xun must estimate at least how many soldiers did Liu Bei had, so that he could decide how many troops he should send to burn Liu Bei's Linked Camps.

    Input:

    There are multiple test cases! On the first line of each test case, there are two integers n (0<n<=1,000) and m (0<=m<=10,000). On the second line, there are n integers C1��Cn. Then m lines follow, each line has three integers i, j, k (0<i<=j<=n, 0<=k<2^31), meaning that the total number of soldiers from the ith camp to the jth camp is at least k.

    Output:

    For each test case, output one integer in a single line: the least number of all soldiers in Liu Bei's army from Lu Xun's observation. However, Lu Xun's estimations given in the input data may be very unprecise. If his estimations cannot be true, output "Bad Estimations" in a single line instead.

    Sample Input:

    3 2
    1000 2000 1000
    1 2 1100
    2 3 1300
    3 1
    100 200 300
    2 3 600
    

    Sample Output:

    1300
    Bad Estimations


    题目大意:火烧连营
    给出n个军营,每个军营最多有c

    i

    个士兵,且[a

    i

    ,b

    i

    ]之间至少有k

    i

    个士兵,问最少有多少士兵。
    #include<cstring>
    #include<cstdio>
    #include<queue>
    using namespace std;
    #define N 1010
    int n,m;
    struct node{
        int v,w,next;
    }edge[N*20];
    int head[N],num;
    int dis[N],cnt[N];
    bool vis[N];
    queue<int>q;
    void read(int &x)
    {
        char c=getchar();
        int f=1;for(;c>'9'||c<'0';c=getchar())if(c=='-')f=-f;x=0;for(;c>='0'&&c<='9';c=getchar())x=(x<<1)+(x<<3)+c-'0';x*=f;
    }
    void add_edge(int u,int v,int w)
    {
        edge[++num].v=v;edge[num].w=w;edge[num].next=head[u];head[u]=num;
    }
    bool spfa()
    {
        memset(dis,0x3f,sizeof(dis));
        memset(vis,0,sizeof(vis));
        memset(cnt,0,sizeof(cnt));
        dis[n]=0;
        vis[n]=1;
        cnt[n]=1;
        q.push(n);
        while(!q.empty())
        {
            int u=q.front();
            q.pop();
            for(int i=head[u];i;i=edge[i].next)
            {
                int v=edge[i].v;
                if(dis[v]>dis[u]+edge[i].w)
                {
                    dis[v]=dis[u]+edge[i].w;
                    if(!vis[v])
                    { 
                        vis[v]=1;
                        cnt[v]++;
                        if(cnt[v]>n)return 0;
                        q.push(v);
                    }
                }
            }
            vis[u]=0;
        }
        return 1;
    }
    int main()
    {
        while(scanf("%d%d",&n,&m)==2)
        {
            memset(head,0,sizeof(head));
            num=0;
            for(int i=1;i<=n;i++)
            {
                int c;
                read(c);
                add_edge(i-1,i,c);
                add_edge(i,i-1,0);
            }
            for(int i=1;i<=m;i++)
            {
                int a,b,c;
                read(a);read(b);read(c);
                add_edge(b,a-1,-c);
            }
            if(spfa())printf("%d
    ",-dis[0]);
            else puts("Bad Estimations");
        }
        return 0;
    }
  • 相关阅读:
    Linux下安装Tomcat服务器
    记一次操蛋的:Could not find parameter map java.lang.Long
    在IDEA中使用MyBatis Generator逆向工程生成代码
    理解jquery的$.extend()、$.fn和$.fn.extend()
    在 Win10 系统下安装 JDK 及配置环境变量的方法
    怎样设置才能允许外网访问MySQL
    基于JavaMail的Java邮件发送:简单邮件发送Demo
    前端学习第57天 背景样式、精灵图、盒子模型布局细节、盒子模型案例、w3c主页
    前端学习第56天高级选择器、盒子模型、边界圆角、其他属性
    前端学习第55天 css三种引用、‘引用的优先级’、基本选择器、属性、display
  • 原文地址:https://www.cnblogs.com/sssy/p/7123402.html
Copyright © 2011-2022 走看看