zoukankan      html  css  js  c++  java
  • HDU 3038

    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

    大致题意:

      小屁孩玩游戏,有 n 个数,你不知道它们的值, 然后又有 m 行数,每行 a ,b ,c,表示 a 到 b 之间所有数的和为c(包含了第a个和第b个数);

      但是这m行数里面有些是错的,就是与前面给的条件相冲突的,要求你最后输出错了几行;

    解题思路:

      带权并查集。

      若有 3->6 ,7->10,显然,你把7--,3--;就变成 2->10;就可以放进同一个集合了;

      和同一个集合里的其余进行比较即可;

     1 #include <cstdio>
     2 using namespace std;
     3 int sum[200005];
     4 int f[200005];
     5 int sf(int x){
     6     if(x==f[x]) return x;
     7     else{
     8         int temp=f[x];//先保存父节点再改变 
     9         f[x]=sf(f[x]);
    10         sum[x]+=sum[temp];//length: x->root = x->father + father->root
    11         return f[x];
    12     }
    13 }
    14 int main(){
    15     int n,m;
    16     while(~scanf("%d%d",&n,&m)){
    17         for(int i=0;i<=n;i++) f[i]=i,sum[i]=0;
    18         int l,r,s,ans=0;
    19         for(int i=1;i<=m;i++){
    20             scanf("%d%d%d",&l,&r,&s); l--;
    21             int a=sf(l);//rot_l
    22             int b=sf(r);//rot_r
    23             if(a>b){
    24                 f[a]=b;
    25                 sum[a]=sum[r]-sum[l]-s;//a->b = r->b - l->a - l->r
    26             } else if(a<b){
    27                 f[b]=a;
    28                 sum[b]=sum[l]-sum[r]+s;
    29             } else {//如果是同一个集合
    30                 if(sum[r]-sum[l]!=s)    ans++;
    31             }
    32         } printf("%d
    ",ans);
    33     } return 0;
    34 }
    我自倾杯,君且随意
  • 相关阅读:
    Java线程优先级(Priority)
    Java同步锁(synchronized)、锁(lock)以及死锁
    Java实现多线程的三种方式(3) ------实现Callable<V>接口
    Java实现多线程的三种方式(2) ------实现Runnable接口
    Java实现多线程的三种方式(1) ------继承Thread类
    Spring AOP(2) --基于配置文件方式配置
    Spring AOP(1) --基于注解方式配置
    Spring IOC容器基于注解方式装配Bean
    Spring IOC容器基于配置文件装配Bean(9) ------bean的SpEL用法
    Python基础教程学习目录
  • 原文地址:https://www.cnblogs.com/nicetomeetu/p/5161610.html
Copyright © 2011-2022 走看看