BZOJ 2212: [Poi2011]Tree Rotations( 线段树 )

时间:2021-11-15 01:17:07

BZOJ 2212: [Poi2011]Tree Rotations( 线段树 )

线段树的合并..对于一个点x, 我们只需考虑是否需要交换左右儿子, 递归处理左右儿子.

 #include<bits/stdc++.h>

 using namespace std;

 #define M(l, r) (((l) + (r)) >> 1)

 typedef long long ll;

 const int maxn = ;

 int N, V[maxn], lc[maxn], rc[maxn], n = ;

 struct Node *null, *pt;
struct Node {
Node *l, *r;
int cnt;
Node() : cnt() {
l = r = null;
}
inline void update() {
cnt = l->cnt + r->cnt;
}
void* operator new(size_t) {
return pt++;
}
} pool[maxn * ], *root[maxn]; void init() {
pt = pool;
null = new(Node);
null->l = null->r = null;
} int v;
void build(Node* t, int l, int r) {
t->cnt = ;
if(r > l) {
int m = M(l, r);
v <= m ? build(t->l = new(Node), l, m) : build(t->r = new(Node), m + , r);
}
} ll cnt0, cnt1, ans = ; Node* merge(Node* L, Node* R) {
if(L == null) return R;
if(R == null) return L;
cnt0 += ll(L->r->cnt) * R->l->cnt;
cnt1 += ll(L->l->cnt) * R->r->cnt;
L->l = merge(L->l, R->l);
L->r = merge(L->r, R->r);
L->update();
return L;
} void read(int x) {
scanf("%d", V + x);
if(!V[x]) {
read(lc[x] = n++); read(rc[x] = n++);
}
} void work(int x) {
if(!~x) return;
work(lc[x]); work(rc[x]);
if(!V[x]) {
cnt0 = cnt1 = ;
if(!~lc[x])
root[x] = root[rc[x]];
else if(!~rc[x])
root[x] = root[lc[x]];
else
root[x] = merge(root[lc[x]], root[rc[x]]);
ans += min(cnt0, cnt1);
}
} int main() { init();
memset(lc, -, sizeof lc); memset(rc, -, sizeof rc);
scanf("%d", &N);
n = ; read(n++); for(int i = ; i < n; i++) if(V[i]) {
v = V[i];
build(root[i] = new(Node), , N);
}
work();
cout << ans << "\n"; return ;
}

2212: [Poi2011]Tree Rotations

Time Limit: 20 Sec  Memory Limit: 259 MB
Submit: 548  Solved: 195
[Submit][Status][Discuss]

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). BZOJ 2212: [Poi2011]Tree Rotations( 线段树 ) 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

HINT

 

Source

BZOJ 2212: [Poi2011]Tree Rotations( 线段树 )的更多相关文章

  1. BZOJ&period;2212&period;&lbrack;POI2011&rsqb;Tree Rotations&lpar;线段树合并&rpar;

    题目链接 \(Description\) 给定一棵n个叶子的二叉树,每个叶节点有权值(1<=ai<=n).可以任意的交换两棵子树.问最后顺序遍历树得到的叶子权值序列中,最少的逆序对数是多少 ...

  2. Bzoj P2212 &lbrack;Poi2011&rsqb;Tree Rotations &vert; 线段树合并

    题目链接 通过观察与思考,我们可以发现,交换一个结点的两棵子树,只对这两棵子树内的节点的逆序对个数有影响,对这两棵子树以外的节点是没有影响的.嗯,然后呢?(っ•̀ω•́)っ 然后,我们就可以对于每一个 ...

  3. bzoj 2212 &colon; &lbrack;Poi2011&rsqb;Tree Rotations (线段树合并)

    题目链接:https://www.lydsy.com/JudgeOnline/problem.php?id=2212 思路:用线段树合并求出交换左右儿子之前之后逆序对的数量,如果数量变小则交换. 实现 ...

  4. 【BZOJ2212】&lbrack;Poi2011&rsqb;Tree Rotations 线段树合并

    [BZOJ2212][Poi2011]Tree Rotations Description Byteasar the gardener is growing a rare tree called Ro ...

  5. &lbrack;BZOJ 2212&rsqb; &lbrack;Poi2011&rsqb; Tree Rotations 【线段树合并】

    题目链接:BZOJ - 2212 题目分析 子树 x 内的逆序对个数为 :x 左子树内的逆序对个数 + x 右子树内的逆序对个数 + 跨越 x 左子树与右子树的逆序对. 左右子树内部的逆序对与是否交换 ...

  6. BZOJ 2212 &lbrack;Poi2011&rsqb;Tree Rotations(线段树合并)

    [题目链接] http://www.lydsy.com/JudgeOnline/problem.php?id=2212 [题目大意] 给出一棵二叉树,每个叶节点上有一个权值,现在可以任意交换左右儿子, ...

  7. bzoj 2212&colon; &lbrack;Poi2011&rsqb;Tree Rotations

    Description Byteasar the gardener is growing a rare tree called Rotatus Informatikus. It has some in ...

  8. bzoj2212&sol;3702 &lbrack;Poi2011&rsqb;Tree Rotations 线段树合并

    Description Byteasar the gardener is growing a rare tree called Rotatus Informatikus. It has some in ...

  9. bzoj2212&lbrack;Poi2011&rsqb;Tree Rotations &lbrack;线段树合并&rsqb;

    题面 bzoj ans = 两子树ans + min(左子在前逆序对数, 右子在前逆序对数) 线段树合并 #include <cstdio> #include <cstdlib&gt ...

随机推荐

  1. 嵌入式linux应用程序移植方法总结

    嵌入式linux应用程序移植方法总结 前段时间一直在做openCapwap的移植和调试工作,现在工作已接近尾声,编写本文档对前段工作进行一个总结,分享下openCapwap移植过程中的经验和感悟.江浩 ...

  2. Java基础知识强化之IO流笔记21:FileInputStream读取数据

    1. 字节输入流的操作步骤: (1)创建字节输入流的对象 (2)调用read()方法读取数据,并把数据显示到控制台 (3)关闭字节输入流的对象资源 2. FileInputStream构造: File ...

  3. Repeater嵌套gridview

    前台:<asp:Repeater ID="Repeater1" runat="server" DataSourceID="SqlDataSour ...

  4. Salesforce随笔&colon; 将Visualforce Page导出为 Excel&sol;CSV&sol;txt &lpar;Display a page in Excel&rpar;

    想要实现如题所述功能,可以参照 : Visualforce Developer Guide 第57页中所举的例子,在<apex:page>标签中添加contentType属性. <a ...

  5. dos 批量重命名 bat

    @echo off setlocal enabledelayedexpansion echo %var% set /a i = i + var for %%x in (*) do ( if not & ...

  6. &lbrack;Cnbeta&rsqb;企业与家用无线路由器的区别

    天天用却不知道有何不同 两种Wi-Fi你说得清吗?   “出门靠4G,在家用Wi-Fi”已成为当下大多数人的连网模式.其实,不仅仅是在家,日常办公中我们也越来越倾向选择Wi-Fi网络,而不是有线网络, ...

  7. JavaScript 复制内容到剪贴板

    <html> <head> <title>Selector</title> <script language="javascript&q ...

  8. Mysql优化与使用集锦

    MyISAM的读性能是比Innodb强 MyISAM的索引和数据是分开的,并且索引是有压缩的 Innodb是索引和数据是紧密捆绑的,没有使用压缩从而会造成Innodb比MyISAM体积庞大不小 MyI ...

  9. Alternative PHP Cache &lpar; APC &rpar;

    简介: Alternative PHP Cache (APC) 是一个开放*的PHP opcode 缓存.它的目标是提供一个*.开放和健全的框架用于缓存和优化 PHP 的中间代码,加快 PHP 执 ...

  10. YII2 选择布局

    方案1:控制器内成员变量 public $layout = false; //不使用布局 public $layout = "main"; //设置使用的布局文件 方案2:控制器成 ...