E. The Number Games 배가
3158 단어 데이터 구조
The nation has n
districts numbered from 1 to n, each district has exactly one path connecting it to every other district. The number of fans of a contestant from district i is equal to 2i .
This year, the president decided to reduce the costs. He wants to remove k
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?
Input The first line of input contains two integers n
and k (1≤k ) — 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 a 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.
Output Print k
space-separated integers: the numbers of the districts of which the contestants should be removed, in increasing order of district number.
Examples Input Copy 6 3 2 1 2 6 4 2 5 6 2 3 Output Copy 1 3 4 Input Copy 8 4 2 6 2 7 7 8 1 2 3 1 2 4 7 5 Output Copy 1 3 4 5
모든 숫자 가 다 르 기 때문에 큰 것 을 선택 할 수 있다 면 작은 것 을 선택 하지 않 을 것 입 니 다. 아래 의 것 을 모두 합치 면 높 은 자리 보다 못 하기 때문에 어떻게 선택 하 느 냐 하 는 문제 입 니 다. nlogn 의 복잡 도 는 큰 것 부터 작은 것 까지 옮 겨 다 닐 수 있 습 니 다. 만약 에 선택 할 수 있다 면 우 리 는 경로 의 점 을 모두 선택 하고 선택해 야 합 니 다. 그래 야 합 니 다.그래서 최근 의 공공 조상 으로 하 는 것 은 사실 기억 화 입 니 다. 매번 직접 찾 으 면 됩 니 다.
#include
#include
#include
#include
#include
#include
using namespace std;
const int maxn=1e6+10;
vector e[maxn];
int in[maxn],p[maxn][21];
void dfs(int u,int fa)
{
int len=e[u].size();
p[u][0]=fa;
for(int i=1;i<=20;i++)
{
p[u][i]=p[p[u][i-1]][i-1];
}
for(int i=0;i=0,k>0;i--)
{
if(k>=(1<=1&&k>0;i--)
{
if(in[i]==1)
continue;
int rt=cal(i,k);
if(in[rt])
{
int sta=i;
while(in[sta]==0)
{
in[sta]=1;
k--;
sta=p[sta][0];
}
}
}
int cnt=0;
for(int i=1;i<=n;i++)
{
if(in[i]==0)
ans[cnt++]=i;
}
for(int i=0;i
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
정수 반전Udemy 에서 공부 한 것을 중얼거린다 Chapter3【Integer Reversal】 (예) 문자열로 숫자를 반전 (toString, split, reverse, join) 인수의 수치 (n)가 0보다 위 또는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.