[BZOJ1202] [NZOI2005]狡猾的商人
Description
***姹接到一个任务,为税务部门调查一位商人的账本,看看账本是不是伪造的。账本上记录了n个月以来的收入情况,其中第i 个月的收入额为Ai(i=1,2,3...n-1,n), 。当 Ai大于0时表示这个月盈利Ai 元,当 Ai小于0时表示这个月亏损Ai 元。所谓一段时间内的总收入,就是这段时间内每个月的收入额的总和。 ***姹的任务是秘密进行的,为了调查商人的账本,她只好跑到商人那里打工。她趁商人不在时去偷看账本,可是她无法将账本偷出来,每次偷看账本时她都只能看某段时间内账本上记录的收入情况,并且她只能记住这段时间内的总收入。 现在,***姹总共偷看了m次账本,当然也就记住了m段时间内的总收入,你的任务是根据记住的这些信息来判断账本是不是假的。
Input
第一行为一个正整数w,其中w < 100,表示有w组数据,即w个账本,需要你判断。每组数据的第一行为两个正整数n和m,其中n < 100,m < 1000,分别表示对应的账本记录了多少个月的收入情况以及偷看了多少次账本。接下来的m行表示***姹偷看m次账本后记住的m条信息,每条信息占一行,有三个整数s,t和v,表示从第s个月到第t个月(包含第t个月)的总收入为v,这里假设s总是小于等于t。
Output
包含w行,每行是true或false,其中第i行为true当且仅当第i组数据,即第i个账本不是假的;第i行为false当且仅当第i组数据,即第i个账本是假的。
Sample Input
2
3 3
1 2 10
1 3 -5
3 3 -15
5 3
1 5 100
3 5 50
1 2 51
3 3
1 2 10
1 3 -5
3 3 -15
5 3
1 5 100
3 5 50
1 2 51
Sample Output
true
false
false
比较裸的差分约束。
就是按照题目要求连边,判断是否有负环。
一个数组没有清零Wa了好久。
#include <iostream>
#include <cstdio>
#include <queue>
#include <cstring>
#include <algorithm>
using namespace std;
#define reg register
inline int read() {
int res=0;char ch=getchar();bool fu=0;
while(!isdigit(ch)) {if(ch=='-')fu=1;ch=getchar();}
while(isdigit(ch))res=(res<<3)+(res<<1)+(ch^48),ch=getchar();
return fu?-res:res;
}
#define N 105
#define M 6005
int T;
int n, m;
struct edge {
int nxt, to, val;
}ed[M];
int head[M], cnt;
inline void add(int x, int y, int z) {
ed[++cnt] = (edge){head[x], y, z};
head[x] = cnt;
}
int tim[M];
int S;
int dis[M];
bool ex[M];
inline bool spfa()
{
memset(dis, 0x3f, sizeof dis);
dis[S] = 0;
queue <int> q;
q.push(S);
while(!q.empty())
{
int x = q.front();q.pop();
tim[x]++;
if (tim[x] >= n) return 0;
ex[x] = 0;
for (reg int i = head[x] ; i ; i = ed[i].nxt)
{
int to = ed[i].to;
if (dis[to] > dis[x] + ed[i].val)
{
dis[to] = dis[x] + ed[i].val;
if (!ex[to]) ex[to] = 1, q.push(to);
}
}
}
return 1;
}
int main()
{
T = read();
while(T--)
{
memset(head, 0, sizeof head);
memset(tim, 0, sizeof tim);
memset(ex, 0, sizeof ex);
cnt = 0;
n = read(), m = read();
S = n + 1;
for (reg int i = 0 ; i <= n ; i ++)
add(S, i, 0);
for (reg int i = 1 ; i <= m ; i ++)
{
int x = read(), y = read(), z = read();
add(x - 1, y, z), add(y, x - 1, -z);
}
if (spfa()) puts("true");
else puts("false");
}
return 0;
}