题目链接

<h1>解题报告</h1>

首先,我们对式子进行分析,如果Ci<0,那么就会停止传递。

然后我们对这个式子进行分析,发现如果你想要求出来Ci就要求出来与i相连的jCj
然后我们还发现其实Ui没用,可以开始统一减去。
最后,这不就是拓扑排序吗。。。

<h1>代码</h1>

#include <iostream>
#include <cstdio>
#include <stack>
#include <queue>

const int MAXM = 30000 + 5;
const int MAXN = 100 + 5;

struct Edge{
    int to,w,next;
}e[MAXM];

int head[MAXN],cnt;
int c[MAXN],in[MAXN];
std::queue<int> q;

inline void add(int u,int v,int w){
    e[++cnt] = Edge{v,w,head[u]};
    head[u] = cnt;
}

void topsort(){
    while(!q.empty()){
        int v = q.front();
        q.pop();
        if(c[v] <= 0){
            for(int i = head[v];i;i = e[i].next){
                in[e[i].to]--;
                if(!in[e[i].to])
                    q.push(e[i].to);
            }
            continue;
        }
        for(int i = head[v];i;i = e[i].next){
            c[e[i].to] += e[i].w * c[v];
            in[e[i].to]--;
            if(!in[e[i].to])
                q.push(e[i].to);
        }
    }
}

int main(){
    int N,P;
    scanf("%d%d",&N,&P);
    for(int p,i = 1;i <= N;i++){
        scanf("%d%d",&c[i],&p);
        if(c[i] != 0) q.push(i);
        else c[i] -= p;
    }
    for(int u,v,w,i = 1;i <= P;i++){
        scanf("%d%d%d",&u,&v,&w);
        add(u,v,w);
        in[v]++;
    }
    topsort();
    bool flag = false;
    for(int i = 1;i <= N;i++){
        if(!head[i] && c[i] > 0){
            printf("%d %dn",i,c[i]);
            flag = true;
        }
    }
    if(!flag) printf("NULLn");
    return 0;
}
Last modification:April 7th, 2020 at 10:14 pm
如果觉得我的文章对你有用,请随意赞赏