zoukankan      html  css  js  c++  java
  • bzoj2212/3702 [Poi2011]Tree Rotations 线段树合并

    Description

    Byteasar the gardener is growing a rare tree called Rotatus Informatikus. It has some interesting features: The tree consists of straight branches, bifurcations and leaves. The trunk stemming from the ground is also a branch. Each branch ends with either a bifurcation or a leaf on its top end. Exactly two branches fork out from a bifurcation at the end of a branch – the left branch and the right branch. Each leaf of the tree is labelled with an integer from the range . The labels of leaves are unique. With some gardening work, a so called rotation can be performed on any bifurcation, swapping the left and right branches that fork out of it. The corona of the tree is the sequence of integers obtained by reading the leaves’ labels from left to right. Byteasar is from the old town of Byteburg and, like all true Byteburgers, praises neatness and order. He wonders how neat can his tree become thanks to appropriate rotations. The neatness of a tree is measured by the number of inversions in its corona, i.e. the number of pairs(I,j), (1< = I < j < = N ) such that(Ai>Aj) in the corona(A1,A2,A3…An).  The original tree (on the left) with corona(3,1,2) has two inversions. A single rotation gives a tree (on the right) with corona(1,3,2), which has only one inversion. Each of these two trees has 5 branches. Write a program that determines the minimum number of inversions in the corona of Byteasar’s tree that can be obtained by rotations.

    现在有一棵二叉树,所有非叶子节点都有两个孩子。在每个叶子节点上有一个权值(有n个叶子节点,满足这些权值为1..n的一个排列)。可以任意交换每个非叶子节点的左右孩子。
    要求进行一系列交换,使得最终所有叶子节点的权值按照遍历序写出来,逆序对个数最少。

    Input

    In the first line of the standard input there is a single integer (2< = N < = 200000) that denotes the number of leaves in Byteasar’s tree. Next, the description of the tree follows. The tree is defined recursively: if there is a leaf labelled with ()(1<=P<=N) at the end of the trunk (i.e., the branch from which the tree stems), then the tree’s description consists of a single line containing a single integer , if there is a bifurcation at the end of the trunk, then the tree’s description consists of three parts: the first line holds a single number , then the description of the left subtree follows (as if the left branch forking out of the bifurcation was its trunk), and finally the description of the right subtree follows (as if the right branch forking out of the bifurcation was its trunk).

    第一行n
    下面每行,一个数x
    如果x==0,表示这个节点非叶子节点,递归地向下读入其左孩子和右孩子的信息,
    如果x!=0,表示这个节点是叶子节点,权值为x

    1<=n<=200000

    Output

    In the first and only line of the standard output a single integer is to be printed: the minimum number of inversions in the corona of the input tree that can be obtained by a sequence of rotations.

    一行,最少逆序对个数

    Sample Input

    3
    0
    0
    3
    1
    2

    Sample Output

    1

    题解

    线段树的合并,子树的逆序对与父亲交换没有关系,所以贪心合并即可。

     1 #include<cstring>
     2 #include<cmath>
     3 #include<algorithm>
     4 #include<iostream>
     5 #include<cstdio>
     6 
     7 #define N 400007
     8 #define M 4000007
     9 #define ll long long
    10 using namespace std;
    11 inline int read()
    12 {
    13     int x=0,f=1;char ch=getchar();
    14     while(ch>'9'||ch<'0'){if (ch=='-') f=-1;ch=getchar();}
    15     while(ch<='9'&&ch>='0'){x=(x<<3)+(x<<1)+ch-'0';ch=getchar();}
    16     return x*f;
    17 }
    18 
    19 int n,sz,seg;
    20 ll ans,cnt1,cnt2;
    21 int val[N],l[N],r[N],rt[N];
    22 int siz[M],ls[M],rs[M];
    23 
    24 void readtree(int x)
    25 {
    26     val[x]=read();
    27     if(!val[x])
    28     {
    29         l[x]=++sz;
    30         readtree(l[x]);
    31         r[x]=++sz;
    32         readtree(r[x]);
    33     }
    34 }
    35 void build(int &k,int l,int r,int val)
    36 {
    37     if(!k)k=++seg;
    38     if(l==r){siz[k]=1;return;}
    39     int mid=(l+r)>>1;
    40     if(val<=mid)build(ls[k],l,mid,val);
    41     else build(rs[k],mid+1,r,val);
    42     siz[k]=siz[ls[k]]+siz[rs[k]];
    43 }
    44 int merge(int x,int y)
    45 {
    46     if(!x)return y;
    47     if(!y)return x;
    48     cnt1+=(ll)siz[rs[x]]*siz[ls[y]];
    49     cnt2+=(ll)siz[ls[x]]*siz[rs[y]];
    50     ls[x]=merge(ls[x],ls[y]);
    51     rs[x]=merge(rs[x],rs[y]);
    52     siz[x]=siz[ls[x]]+siz[rs[x]];
    53     return x;
    54 }
    55 void solve(int x)
    56 {
    57     if(!x)return;
    58     solve(l[x]);solve(r[x]);
    59     if(!val[x])
    60     {
    61         cnt1=cnt2=0;
    62         rt[x]=merge(rt[l[x]],rt[r[x]]);
    63         ans+=min(cnt1,cnt2);
    64     }
    65 }
    66 int main()
    67 {
    68     n=read();++sz;
    69     readtree(1);
    70     for(int i=1;i<=sz;i++)
    71         if(val[i])build(rt[i],1,n,val[i]);
    72     solve(1);
    73     printf("%lld",ans);
    74 }
  • 相关阅读:
    CSS:关于CSS Hack
    JS数据交互:动态从数据库中获取数据填充Select
    Oracle数据库—— 事务处理与并发控制
    Java 实现任意N阶幻方的构造
    Java 实现奇数阶幻方的构造
    Web前端开发笔试&面试_03
    任意多边形的几何变换
    关于网站劫持
    mysql 出现Host 'localhost' is not allowed to connect to this MySQL server 错误
    mysql 导入表数据中文乱码
  • 原文地址:https://www.cnblogs.com/fengzhiyuan/p/8168131.html
Copyright © 2011-2022 走看看