HDU 3038 How Many Answers Are Wrong? (With permission and query set)

Source: Internet
Author: User

Question:
Problem Description
TT and FF are... friends. Uh... 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 shocould 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 nth integer within sively ). 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 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 empty 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 ed 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
 


Analysis and Summary:
This is the same as HDU 3047 Zjnu Stadium (with permission and query set.


Code:
[Cpp]
# Include <cstdio>
 
Const int n= 200005;
Int n, m, f [N], rank [N];
 
Inline void init (){
For (int I = 0; I <= n; ++ I)
F [I] = I, rank [I] = 0;
}
Int find (int x ){
If (x = f [x]) return f [x];
Int fa = f [x];
F [x] = find (f [x]);
Rank [x] + = rank [fa];
Return f [x];
}
Bool Union (int x, int y, int c ){
Int a = find (x), B = find (y );
If (a = B ){
If (rank [x] + c! = Rank [y]) return false;
Return true;
}
F [B] =;
Rank [B] = rank [x]-rank [y] + c;
Return true;
}
Int main (){
Int a, B, c;
While (~ Scanf ("% d", & n, & m )){
Int cnt = 0;
Init ();
For (int I = 0; I <m; ++ I ){
Scanf ("% d", & a, & B, & c );
If (! Union (A-1, B, c )){
++ Cnt;
}
}
Printf ("% d \ n", cnt );
}
Return 0;

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.