前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >hdu 3038 How Many Answers Are Wrong ( 带 权 并 查 集 )

hdu 3038 How Many Answers Are Wrong ( 带 权 并 查 集 )

作者头像
Gxjun
发布2018-03-26 16:15:05
8160
发布2018-03-26 16:15:05
举报
文章被收录于专栏:mlml

How Many Answers Are Wrong

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 2961    Accepted Submission(s): 1149

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

 思路: 几个月没有做题,喵了个咪,这么个题,只是举了个栗子的题,就做掉了两天半。。。

        果断的无语,泪奔!!! 还是看了别人的解题报告,写了个这么粗糙的代码!!  感谢给出下面题解报告的牛牛orz  !

---- sum[x]表示区间[x,f[x]]的和,这个可以在路径压缩的时候更新,对于一组数据(u,v,w),令r1=Find(u),r2=Find(v),于是若r1==r2,此时u,v就有了相同的参考点,而sum[u]为区间[u,r1(r2)]的和,sum[v]为区间[v,r2(r1)]的和,于是只需判断w==sum[v]-sum[u]即可;若r1<r2,此时可以分为两种情况,(u,v,r1,r2)或者(u,r1,v,r2),对于情况1来说,此时father[r1]=r2,sum[r1]=sum[v]-(sum[u]-w);对于情况2有sum[r1]=w-sun[u]+sum[v].通过观察,我们可以发现情况1和情况2的结果是一样的,于是可以合并。同理,对于r1>r2这种情况也一样,这里就不在赘述了。

代码语言:javascript
复制
 1 #include<iostream>
 2 #include<cstdio>
 3 #include<cstring>
 4 #include<algorithm>
 5 #define MAXN 222222
 6 using namespace std;
 7 
 8 int sum[MAXN],father[MAXN];
 9 int n,m;
10 
11 void Init(){
12    memset(sum,0,sizeof(sum));
13   for(int i=0;i<=n;i++)
14     father[i]=i;
15 }
16 
17 int Find(int x)
18 {
19     if(x==father[x])
20         return x;
21     int tmp=father[x];
22     father[x]=Find(father[x]);
23        sum[x]+=sum[tmp];
24     return father[x];
25 }
26 
27 bool Union(int u,int v,int w)
28 {
29     int r1=Find(u);
30     int r2=Find(v);
31     if(r1==r2){
32         if(sum[u]==w+sum[v])
33              return true;
34         return false;
35     }else {
36         father[r1]=r2;
37         sum[r1]=sum[v]-sum[u]+w;
38         return true;
39     }
40 }
41 
42 int main()
43 {
44     int u,v,w,ans;
45     while(~scanf("%d%d",&n,&m)){
46         Init();
47         ans=0;
48         while(m--){
49             scanf("%d%d%d",&u,&v,&w);
50             if(!Union(u-1,v,w))ans++;
51         }
52         printf("%d\n",ans);
53     }
54     return 0;
55 }
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2015-03-06 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • How Many Answers Are Wrong
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档