HDU 3038 How Many Answers Are Wrong (并查集)---并查集看不出来系列-1

Problem Description
TT and FF are ... friends. Uh... very very good friends -________-b

FF is a bad boy, he is always wooing TT to play the following game with him. This is a very humdrum game. To begin with, TT should write down a sequence of integers-_-!!(bored).

Then, FF can choose a continuous subsequence from it(for example the subsequence from the third to the fifth integer inclusively). After that, FF will ask TT what the sum of the subsequence he chose is. The next, TT will answer FF's question. Then, FF can redo this process. In the end, FF must work out the entire sequence of integers.

Boring~~Boring~~a very very boring game!!! TT doesn't want to play with FF at all. To punish FF, she often tells FF the wrong answers on purpose.

The bad boy is not a fool man. FF detects some answers are incompatible. Of course, these contradictions make it difficult to calculate the sequence.

However, TT is a nice and lovely girl. She doesn't have the heart to be hard on FF. To save time, she guarantees that the answers are all right if there is no logical mistakes indeed.

What's more, if FF finds an answer to be wrong, he will ignore it when judging next answers.

But there will be so many questions that poor FF can't make sure whether the current answer is right or wrong in a moment. So he decides to write a program to help him with this matter. The program will receive a series of questions from FF together with the answers FF has received from TT. The aim of this program is to find how many answers are wrong. Only by ignoring the wrong answers can FF work out the entire sequence of integers. Poor FF has no time to do this job. And now he is asking for your help~(Why asking trouble for himself~~Bad boy)
 

 

 

 
Input
Line 1: Two integers, N and M (1 <= N <= 200000, 1 <= M <= 40000). Means TT wrote N integers and FF asked her M questions.

Line 2..M+1: Line i+1 contains three integer: Ai, Bi and Si. Means TT answered FF that the sum from Ai to Bi is Si. It's guaranteed that 0 < Ai <= Bi <= N.

You can assume that any sum of subsequence is fit in 32-bit integer.
 

Output

            A single line with a integer denotes how many answers are wrong.
 

Sample Input
10 5
1 10 100
7 10 28
1 3 32
4 6 41
6 6 1
 

Sample Output
1
 

 
Source
2009 Multi-University Training Contest 13 - Host by HIT
 

Recommend
gaojie

并查集看不出来系列

建立一个并查集, 并查集中每个节点的值是指这个节点到其根节点的距离(与根节点的差),

若要求区间 [a,b] 的和, 即为求sum[b]-sum[a-1];

代码:

 1 #include<iostream>
 2 #include<cstdio>
 3 #include<cstring>
 4 #include<algorithm>
 5 #include<cmath>
 6 #include<map>
 7 #include<iomanip>
 8 #define INF 0x7ffffff
 9 #define MAXN 200010
10 using namespace std;
11 const double eps=1e-10;
12 int b[MAXN];
13 int val[MAXN];
14     int n,m;
15 void init()
16 {
17     memset(val,0,sizeof(val));
18     for(int i=1;i<=n;i++){
19         b[i]=i;
20     }
21 }
22 int find(int x)
23 {
24 //    int tem;
25 //    int t=x;
26 //    while(b[t]!=t){
27 //        t=b[t];
28 //    }
29 //    while(b[x]!=x){
30 //        val[t]=val[t]+val[b[t]];
31 //        x=b[x];
32 //        b[x]=t;
33 //    }
34 //    return t;
35     if(b[x]==x) return x;
36     int t=b[x];
37     //val[x]+=val[b[x]];
38     b[x]=find(b[x]);
39     val[x]+=val[t];//注意此操作与DFS的顺序!!!这个操作的顺序是将根节点的值传下来, 注意有此操作必须结合路径压缩, 不然会出错误,why?
40     return b[x];
41 }
42 void uni(int x,int y,int c)
43 {
44     int xx=find(x);
45     int yy=find(y);
46     if(xx<yy){
47         b[yy]=xx;
48         val[yy]=val[x]+c-val[y];
49     }
50     else{
51         b[xx]=yy;
52         val[xx]=val[y]-val[x]-c;
53     }
54 }
55 int main()
56 {
57     #ifndef ONLINE_JUDGE
58     freopen("data.in", "r", stdin);
59     #endif
60     std::ios::sync_with_stdio(false);
61     std::cin.tie(0);
62     int ans=0;
63     int a,b,c;
64     int xx,yy;
65     while(cin>>n>>m){
66         ans=0;
67         init();
68         for(int i=0;i<m;i++){
69             cin>>a>>b>>c;
70             a--;//注意--操作, 因为要求的是a到b的距离, 因此需要 sum[b]-sum[a-1]
71             if(find(a)!=find(b)){
72                 uni(a,b,c);
73             }
74             else{
75                 if(val[b]-val[a]!=c){
76                     ans++;
77                 }
78             }
79         }
80         cout<<ans<<endl;
81     }
82 }

 

posted @ 2016-11-20 22:33  Pic  阅读(116)  评论(0编辑  收藏  举报