zoukankan      html  css  js  c++  java
  • 洛谷P1456 Monkey King

    https://www.luogu.org/problemnew/show/1456

    #include<cstdio>
    #include<iostream>
    #include<algorithm>
    
    using namespace std;
    
    #define N 100001
    
    struct node
    {
        int lc,rc;
        int key,dis;
    }e[N];
    
    int fa[N];
    
    void read(int &x)
    {
        x=0; char c=getchar();
        while(!isdigit(c)) c=getchar(); 
        while(isdigit(c)) { x=x*10+c-'0'; c=getchar(); }
    }
    
    int find(int i) { return fa[i]==i ? i : fa[i]=find(fa[i]); }
    
    int merge(int a,int b)
    {
        if(!a) return b;
        if(!b) return a;
        if(e[a].key<e[b].key) swap(a,b);
        e[a].rc=merge(e[a].rc,b);
        if(e[e[a].lc].dis<e[e[a].rc].dis) swap(e[a].lc,e[a].rc);
        if(!e[a].rc) e[a].dis=0;
        else e[a].dis=e[e[a].rc].dis+1;
        return a;
    }
    
    int del(int x)
    {
        int lc=e[x].lc,rc=e[x].rc;
        e[x].dis=e[x].lc=e[x].rc=0;
        return fa[lc]=fa[rc]=merge(lc,rc);
    }
    
    int main()
    {
        int n,m;
        int x,y,u,v,f,g,h;
        while(scanf("%d",&n)!=EOF)
        {
            for(int i=1;i<=n;++i) 
            {
                read(e[i].key);
                fa[i]=i;
                e[i].dis=e[i].lc=e[i].rc=0;
            }
            read(m);
            while(m--)
            {
                read(x);
                read(y);
                x=find(x);
                y=find(y);
                if(x==y) 
                {
                    puts("-1");
                    continue;
                }
                e[x].key>>=1;
                e[y].key>>=1;
                
                u=del(x);
                v=del(y);
                g=merge(u,v);
                fa[u]=fa[v]=g;
                
            
                f=merge(x,y);
                fa[x]=fa[y]=f;
                
                h=merge(g,f);
                fa[g]=fa[f]=h;
                cout<<e[h].key<<'
    ';
            }
        }
    }

    题目描述

    Once in a forest, there lived N aggressive monkeys. At the beginning, they each does things in its own way and none of them knows each other. But monkeys can't avoid quarrelling, and it only happens between two monkeys who does not know each other. And when it happens, both the two monkeys will invite the strongest friend of them, and duel. Of course, after the duel, the two monkeys and all of there friends knows each other, and the quarrel above will no longer happens between these monkeys even if they have ever conflicted.

    Assume that every money has a strongness value, which will be reduced to only half of the original after a duel(that is, 10 will be reduced to 5 and 5 will be reduced to 2).

    And we also assume that every monkey knows himself. That is, when he is the strongest one in all of his friends, he himself will go to duel.

    一开始有n只孤独的猴子,然后他们要打m次架,每次打架呢,都会拉上自己朋友最牛叉的出来跟别人打,打完之后战斗力就会减半,每次打完架就会成为朋友(正所谓不打不相识o(∩_∩)o )。问每次打完架之后那俩猴子最牛叉的朋友战斗力还有多少,若朋友打架就输出-1.

    输入输出格式

    输入格式:

    There are several test cases, and each case consists of two parts.

    First part: The first line contains an integer N(N<=100,000), which indicates the number of monkeys. And then N lines follows. There is one number on each line, indicating the strongness value of ith monkey(<=32768).

    Second part: The first line contains an integer M(M<=100,000), which indicates there are M conflicts happened. And then M lines follows, each line of which contains two integers x and y, indicating that there is a conflict between the Xth monkey and Yth.

    有多组数据

    输出格式:

    For each of the conflict, output -1 if the two monkeys know each other, otherwise output the strength value of the strongest monkey among all of its friends after the duel.

    输入输出样例

    输入样例#1: 复制
    5
    20
    16
    10
    10
    4
    5
    2 3
    3 4
    3 5
    4 5
    1 5
    
    输出样例#1: 复制
    8
    5
    5
    -1
    10
  • 相关阅读:
    SpringBoot+MyBatis通过ScriptRunner读取SQL文件
    Redis 分布式锁使用不当,酿成一个重大事故,超卖了100瓶飞天茅台!!!(转)
    better-scroll插件中导致fixed定位失效处理方便
    VUE SSR服务器端渲染NUXT采坑总结
    js的三种异步处理
    微信小程序支付功能讲解
    函数防抖与节流
    转:HTML5 History API 详解
    微信小程序 上拉刷新/下拉加载
    跨域你需要知道这些
  • 原文地址:https://www.cnblogs.com/TheRoadToTheGold/p/8145770.html
Copyright © 2011-2022 走看看