记录编号 |
586384 |
评测结果 |
AAAAAAA |
题目名称 |
[NOIP 2003]神经网络 |
最终得分 |
100 |
用户昵称 |
┭┮﹏┭┮ |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.000 s |
提交时间 |
2024-01-18 17:15:02 |
内存使用 |
0.00 MiB |
显示代码纯文本
#include <bits/stdc++.h>
using namespace std;
//拓扑排序
const int N = 210,M = 5e4+10;
int n,m;
struct made{
int ver,nx,ed;
}e[M<<1];
int hd[N],tot;
int c[N],u[N],ch[N],ru[N];
void add(int x,int y,int z){
tot++;
e[tot].nx = hd[x],e[tot].ver = y,e[tot].ed = z,hd[x] = tot;
}
queue<int>q;
void topsort() {
for(int i = 1;i <= n;i++)
if(!ru[i])q.push(i);
else c[i] -= u[i];
while(!q.empty()){
int x = q.front();q.pop();
for(int i = hd[x];i;i = e[i].nx){
int y = e[i].ver,z = e[i].ed;
if(c[x] > 0)c[y] += z * c[x];//只有>0才会传递
if(--ru[y] == 0)q.push(y);
}
}
}
int main(){
freopen("sjwl.in","r",stdin);
freopen("sjwl.out","w",stdout);
scanf("%d%d",&n,&m);
for(int i = 1;i <= n;i++)scanf("%d%d",&c[i],&u[i]);
for(int i = 1;i <= m;i++){
int x,y,z;
scanf("%d%d%d",&x,&y,&z);
add(x,y,z);
ch[x]++;ru[y]++;
}
topsort();
int cnt = 0;
for(int i = 1;i <= n;i++)
if(!ch[i] && c[i] > 0)printf("%d %d\n",i,c[i]),cnt++;
if(cnt == 0)printf("NULL\n");
return 0;
}