• 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;
    }
  • 相关阅读:
    Spring Boot整合JPA
    Emmet Cheat Sheet All In One
    CCTV《航拍中国》系列视频 All In One
    上海市税务局服务 All In One
    CCTV 天气预报 All In One
    Next.js Tutorials All In One
    如何使用 GitHub Actions 发布 Gatsby 静态网站 All In One
    GitHub Code Security & Code Scanning All In One
    数字滚动显示组件 All In One
    Gatsby plugins All In One
  • 原文地址:https://www.cnblogs.com/sssy/p/7123402.html
Copyright © 2020-2023  润新知