CF980E The Number Games

题意翻译

Panel 国将举办名为数字游戏的年度表演。每个省派出一名选手。

国家有 n 个编号从 1 到 n 的省,每个省刚好有一条路径将其与其他省相连。第 i 个省出来的代表有 2i 名粉丝。

今年,主席打算削减开支,他想要踢掉 k 个选手。但是,被踢掉的选手的省将很 angry 并且不会让别的任何人从这个省经过。

主席想确保所有剩下选手的省都互相可达,他也希望最大化参与表演的选手的粉丝数。

主席该踢掉哪些选手呢?

输入格式

输入n,k 。( k<n≤106 )

下来是 n−1 行,一行两个数,代表一条道路的起终点。

输出格式

升序输出要踢掉的选手编号。

感谢@poorpool 提供的翻译

题目描述

The nation of Panel holds an annual show called The Number Games, where each district in the nation will be represented by one contestant.

The nation has nn districts numbered from 11 to nn , each district has exactly one path connecting it to every other district. The number of fans of a contestant from district ii is equal to 2^i2i .

This year, the president decided to reduce the costs. He wants to remove kk contestants from the games. However, the districts of the removed contestants will be furious and will not allow anyone to cross through their districts.

The president wants to ensure that all remaining contestants are from districts that can be reached from one another. He also wishes to maximize the total number of fans of the participating contestants.

Which contestants should the president remove?

输入输出格式

输入格式:

The first line of input contains two integers n and k ( 1≤k<n≤106 ) — the number of districts in Panel, and the number of contestants the president wishes to remove, respectively.

The next n−1 lines each contains two integers aa and b ( 1≤a,b≤n , a≠b ), that describe a road that connects two different districts a and b in the nation. It is guaranteed that there is exactly one path between every two districts.

输出格式:

Print k space-separated integers: the numbers of the districts of which the contestants should be removed, in increasing order of district number.

输入输出样例

输入样例#1: 复制

6 3
2 1
2 6
4 2
5 6
2 3
输出样例#1: 复制

1 3 4
输入样例#2: 复制

8 4
2 6
2 7
7 8
1 2
3 1
2 4
7 5
输出样例#2: 复制

1 3 4 5

说明

In the first sample, the maximum possible total number of fans is 2^2 + 2^5 + 2^6 = 100 . We can achieve it by removing the contestants of the districts 1, 3, and 4.


Solution

哭,写完才发现为什么别人的代码那么短QAQ

暴拍了个树剖+线段树修改QAQ

思路也就是贪心了,把$n$定为根节点,从大往小选,要选它选意味着这个点到根节点的点全都要选,所以每次计算这条路上可以选的数量,能选就选,然后修改线段树,最后查询线段树上没有被修改的就行了。

Code

#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std; int n, k; struct Node {
int u, v, nex;
Node(int u = , int v = , int nex = ) :
u(u), v(v), nex(nex) { }
} Edge[]; int h[], stot;
void add(int u, int v) {
Edge[++stot] = Node(u, v, h[u]);
h[u] = stot;
} int fa[], siz[], son[];
void dfs1(int u, int f) {
fa[u] = f; siz[u] = ;
for(int i = h[u]; i; i = Edge[i].nex) {
int v = Edge[i].v;
if(v == f) continue;
dfs1(v, u);
siz[u] += siz[v];
if(siz[v] > siz[son[u]]) son[u] = v;
}
} int top[], in[], idc;
void dfs2(int u, int t) {
top[u] = t; in[u] = ++idc;
if(son[u]) dfs2(son[u], t);
for(int i = h[u]; i; i = Edge[i].nex) {
int v = Edge[i].v;
if(v == fa[u] || v == son[u]) continue;
dfs2(v, v);
}
} int TR[], tag[];
void update(int nd) {
TR[nd] = TR[nd << ] + TR[nd << | ];
} void push_down(int nd, int l, int r) {
if(~tag[nd]) {
int mid = (l + r) >> ;
TR[nd << ] = ;
TR[nd << | ] = ;
tag[nd << ] = ; tag[nd << | ] = ;
tag[nd] = -;
}
} void build(int nd, int l, int r) {
tag[nd] = -;
if(l == r) {
TR[nd] = ;
return ;
}
int mid = (l + r) >> ;
build(nd << , l, mid);
build(nd << | , mid + , r);
update(nd);
} int query(int nd, int l, int r, int L, int R) {
if(l >= L && r <= R) return TR[nd];
push_down(nd, l, r);
int ans = ; int mid = (l + r) >> ;
if(L <= mid) ans += query(nd << , l, mid, L, R);
if(R > mid) ans += query(nd << | , mid + , r, L, R);
return ans;
} void modify(int nd, int l, int r, int L, int R) {
if(l >= L && r <= R) {
TR[nd] = ;
tag[nd] = ;
return ;
}
push_down(nd, l, r);
int mid = (l + r) >> ;
if(L <= mid) modify(nd << , l, mid, L, R);
if(R > mid) modify(nd << | , mid + , r, L, R);
update(nd);
} int query(int u) {
int ans = ;
while(top[u] != ) {
ans += query(, , n, in[top[u]], in[u]);
u = fa[top[u]];
}
ans += query(, , n, in[n], in[u]);
return ans;
} void modify(int u) {
while(top[u] != ) {
modify(, , n, in[top[u]], in[u]);
u = fa[top[u]];
}
modify(, , n, in[n], in[u]);
} int use[];
int main() {
scanf("%d%d", &n, &k);
memset(use, , sizeof(use));
for(int i = ; i < n; i ++) {
int u, v;
scanf("%d%d", &u, &v);
add(u, v); add(v, u);
}
dfs1(n, ); dfs2(n, );
build(, , n);
int tot = n - k;
for(int i = n; i >= && tot; i --) {
int tmp = query(i);
if(tmp <= tot) {
tot -= tmp;
modify(i);
}
}
for(int i = ; i <= n; i ++)
if(query(, , n, in[i], in[i])) printf("%d ", i);
return ;
}

CF980E The Number Games【树链剖分/线段树】的更多相关文章

  1. Aizu 2450 Do use segment tree 树链剖分+线段树

    Do use segment tree Time Limit: 1 Sec Memory Limit: 256 MB 题目连接 http://www.bnuoj.com/v3/problem_show ...

  2. 【POJ3237】Tree(树链剖分+线段树)

    Description You are given a tree with N nodes. The tree’s nodes are numbered 1 through N and its edg ...

  3. Spoj Query on a tree SPOJ - QTREE(树链剖分+线段树)

    You are given a tree (an acyclic undirected connected graph) with N nodes, and edges numbered 1, 2, ...

  4. 【BZOJ-2325】道馆之战 树链剖分 + 线段树

    2325: [ZJOI2011]道馆之战 Time Limit: 40 Sec  Memory Limit: 256 MBSubmit: 1153  Solved: 421[Submit][Statu ...

  5. 【BZOJ2243】[SDOI2011]染色 树链剖分+线段树

    [BZOJ2243][SDOI2011]染色 Description 给定一棵有n个节点的无根树和m个操作,操作有2类: 1.将节点a到节点b路径上所有点都染成颜色c: 2.询问节点a到节点b路径上的 ...

  6. BZOJ2243 (树链剖分+线段树)

    Problem 染色(BZOJ2243) 题目大意 给定一颗树,每个节点上有一种颜色. 要求支持两种操作: 操作1:将a->b上所有点染成一种颜色. 操作2:询问a->b上的颜色段数量. ...

  7. POJ3237 (树链剖分+线段树)

    Problem Tree (POJ3237) 题目大意 给定一颗树,有边权. 要求支持三种操作: 操作一:更改某条边的权值. 操作二:将某条路径上的边权取反. 操作三:询问某条路径上的最大权值. 解题 ...

  8. bzoj4034 (树链剖分+线段树)

    Problem T2 (bzoj4034 HAOI2015) 题目大意 给定一颗树,1为根节点,要求支持三种操作. 操作 1 :把某个节点 x 的点权增加 a . 操作 2 :把某个节点 x 为根的子 ...

  9. HDU4897 (树链剖分+线段树)

    Problem Little Devil I (HDU4897) 题目大意 给定一棵树,每条边的颜色为黑或白,起始时均为白. 支持3种操作: 操作1:将a->b的路径中的所有边的颜色翻转. 操作 ...

  10. HDU 2460 Network(双连通+树链剖分+线段树)

    HDU 2460 Network 题目链接 题意:给定一个无向图,问每次增加一条边,问个图中还剩多少桥 思路:先双连通缩点,然后形成一棵树,每次增加一条边,相当于询问这两点路径上有多少条边,这个用树链 ...

随机推荐

  1. 【算法学习】【洛谷】cdq分治 & P3810 三维偏序

    cdq是何许人也?请参看这篇:https://wenku.baidu.com/view/3b913556fd0a79563d1e7245.html. 在这篇论文中,cdq提出了对修改/询问型问题(Mo ...

  2. Remove K Digits

    Given string A representative a positive integer which has N digits, remove any k digits of the numb ...

  3. Linux内核跟踪之ring buffer的实现【转】

      转自:http://blog.chinaunix.net/uid-20543183-id-1930845.html ---------------------------------------- ...

  4. 利用github pages五分钟建好个人网站+个人博客

    笔者自己在建个人网站/个人博客的时候其实遇到了不少麻烦,但是都一一解决了,这里教给大家最简单的方式. 首先你需要一个GitHub账号,访问https://github.com创建新账号即可. 然后访问 ...

  5. mysql高可用架构 -> MHA主从复制-03

    GTID复制技术说明 GTID的全称为 global transaction identifier ,可以翻译为全局事务标示符,GTID在原始master上的事务提交时被创建.GTID需要在全局的主- ...

  6. linux之发送邮件--sendmail服务配置

    新手入门也不知道什么日志分析服务好,鸟哥说logwatch,那我就从logwatch开始吧! logwatch用到了emai发邮件,先从配置邮件发送sendmail开始: 安装sendmail服务,我 ...

  7. RocketMQ使用

    RocketMQ是阿里巴巴在2012年开源的分布式消息中间件,目前已经捐赠给Apache基金会,并于2016年11月成为 Apache 孵化项目. 中间件是一类连接软件组件和应用的计算机软件,它包括一 ...

  8. centos7连接阿里云长时间连接不上

    一.手动修改网卡配置 手上有几台centos7的linux,当连接阿里云的ecs服务器时候长时间连接不上,最后失败的问题. 使用 -vvv参数到如下语句就卡着不动了 ssh -vvv XXX.XXX. ...

  9. 牛客红包OI赛 B 小可爱序列

    Description 链接:https://ac.nowcoder.com/acm/contest/224/B 来源:牛客网 "我愿意舍弃一切,以想念你,终此一生." " ...

  10. MySQL学习笔记:生成一个时间序列

    今天遇到一个需求是生成以下表格的数据,一整天24小时,每秒一行数据. 寻找颇旧,找到另外两个实现的例子,暂且学习一翻.另一个见另外一篇. DAY) AS DATE FROM ( ) AS tmp, ( ...