search
HomeBackend DevelopmentPHP TutorialPOJ 3107 - Godfather tree DP..vector should be used with caution..._PHP tutorial

The submission timed out... I really don't think there is much to optimize... The most I can do is change it back to the bottom-up BFS... but it's very troublesome and I have to remember a lot of things... I only found out after reading the discussion that it's mainly because of the vector... Change it to a handwritten linked list. .500MS passed,,,

Select any point as the root of the tree... Count the number of subtree elements at each point. For points that are not root... Subtract the number N of all points N from the number of elements of the current subtree num .as another child of the point...
Program:
#include<iostream>
#include<stdio.h>
#include<string.h>
#include<set>
#include<ctime>
#include<algorithm>
#include<queue>
#include<cmath>
#include<map>
#define oo 1000000007
#define ll long long
#define pi acos(-1.0)
#define MAXN 50005
using namespace std;  
struct node
{
      int x,y,next;
}line[MAXN*2];  
int n,AnsNum,AnsData,ans[MAXN],_next[MAXN];
bool used[MAXN];
void addline(int x,int y,int m)
{
      line[m].next=_next[x],_next[x]=m;
      line[m].x=x,line[m].y=y;
      return;
}
int dfs(int x)
{
      int MaxSub=0,num=0,t,k;
      k=_next[x];
      while (k) 
      {
           if (!used[line[k].y])
           {
                 used[line[k].y]=true;
                 t=dfs(line[k].y);
                 MaxSub=max(t,MaxSub);
                 num+=t;
                 used[line[k].y]=false;
           }
           k=line[k].next;
      }
      MaxSub=max(MaxSub,n-(num+1));
      if (MaxSub==AnsData) ans[++AnsNum]=x;
      else 
      if (MaxSub<AnsData)
      { 
             AnsData=MaxSub;
             AnsNum=0,ans[++AnsNum]=x;
      }
      return num+1;
}
int main()
{  
      int i,num; 
      while (~scanf("%d",&n))
      {
              memset(_next,0,sizeof(_next));
              for (i=1;i<n;i++)
              {
                     int x,y;
                     scanf("%d%d",&x,&y);
                     addline(x,y,i*2-1);
                     addline(y,x,i*2); 
              }
              memset(used,false,sizeof(used));
              AnsData=oo; used[1]=true;
              dfs(1);
              sort(ans+1,ans+1+AnsNum);
              printf("%d",ans[1]);
              for (i=2;i<=AnsNum;i++) printf(" %d",ans[i]);
              printf("\n");
      }
      return 0;
}


www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/477206.htmlTechArticleSubmission timeout... I really don’t think there is much to optimize... At most, change it back to bottom-up BFS... But it’s so troublesome to remember a lot of things. After reading the discussion, I found out that the main reason is vector.. Changed to handwritten linked list.. 500M...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
小米手环8pro与华为手环8哪款更出色?小米手环8pro与华为手环8哪款更出色?Jan 01, 2024 pm 02:59 PM

不少用户在选购一款手表和手环的时候都会比较纠结是买小米手环8pro还是华为手环8,二者之间的区别也是有不同的,如果你更看重体验,那么可以选择小米,如果你更看重健康监测,那么可以选择华为。小米手环8pro和华为手环8哪个好答:具体看需求。小米手环8pro:适合喜欢丰富的运动模式和更好的兼容性,以及有着接近手表的屏幕显示和颜值。华为手环8:更看重健康监测数据,也更看重无感的佩戴体验。当然还有一点就是,如果你的小米设备比较多,那么还是优先选择小米手环,如果你有华为手机,那么就选择华为手环。小米手环8P

如何解决Java线程中断超时异常(ThreadInterruptedTimeoutExceotion)如何解决Java线程中断超时异常(ThreadInterruptedTimeoutExceotion)Aug 18, 2023 pm 01:57 PM

如何解决Java线程中断超时异常(ThreadInterruptedTimeoutException)在Java多线程编程中,经常会遇到线程执行时间过长的情况。为了避免线程占用过多的系统资源,我们通常会设置一个超时时间,当线程执行时间超过超时时间时,我们希望能够中断线程的执行。Java中提供了线程中断的机制,通过调用线程的interrupt()方法可以向线程

美团超时怎么赔付?美团超时赔付标准!美团超时怎么赔付?美团超时赔付标准!Mar 16, 2024 pm 07:55 PM

一、美团超时怎么赔付?美团超时赔付标准!美团超时赔付规则如下:(一)购买了准时宝服务的超时:选择准时宝服务后,如外卖骑手未能按时送达,系统将自动启动赔偿流程,赔偿金额根据订单细节和超时时长而定。(二)未购买准时宝的普通超时:1.订单实际送达时间晚于承诺送达时间10分钟以上、20分钟以下的,赔付订单实际支付金额的25%。2.订单实际送达时间晚于承诺送达时间20分钟以上、30分钟以下的,赔付订单实际支付金额的30%。3.订单实际送达时间晚于承诺送达时间30分钟以上的,赔付订单实际支付金额的50%。4

红米Redmi K70如何打开存储权限?红米Redmi K70如何打开存储权限?Feb 23, 2024 pm 12:30 PM

红米RedmiK70是很多用户们都在使用的机型,这款手机自从发布以来一直都保持着很不错的口碑,拥有着超高的性价比。当然,除了性价比以外,红米RedmiK70还有着许多非常实用的功能。那么红米RedmiK70怎么打开存储权限呢?接下来就让小编来为大家介绍一下吧!红米RedmiK70怎么打开存储权限?要打开红米RedmiK70的存储权限,你可以按照以下步骤操作:步骤一:打开手机的设置应用。步骤二:向下滚动并找到“应用管理”或“应用和通知”,然后点击进入。步骤三:在应用管理中,找到你想要打开存储权限的

Lock wait timeout exceeded; try restarting transaction - 如何解决MySQL报错:事务等待超时Lock wait timeout exceeded; try restarting transaction - 如何解决MySQL报错:事务等待超时Oct 05, 2023 am 08:46 AM

Lockwaittimeoutexceeded;tryrestartingtransaction-如何解决MySQL报错:事务等待超时在使用MySQL数据库时,有时可能会遇到一个常见的错误:Lockwaittimeoutexceeded;tryrestartingtransaction,该错误表示事务等待超时。这个错误通常发生在并

红米Redmi K70 Pro耗电快怎么处理?红米Redmi K70 Pro耗电快怎么处理?Feb 23, 2024 am 10:50 AM

红米RedmiK70Pro是当下最热门的高性价机型,搭载了最新的高通骁龙8Gen3处理器,也是当下最便宜的高通骁龙8Gen3手机,对于性能配置有要求但钱又不是很多的小伙伴都选择了这款手机。那么红米RedmiK70Pro出现了耗电快的情况应该怎么处理呢?红米RedmiK70Pro耗电快怎么办?如果你发现红米RedmiK70Pro耗电速度异常快,你可以尝试以下方法来减少耗电速度:方法一:调整亮度和屏幕超时时间将屏幕亮度调低,并将屏幕超时时间设置为较短的时间段,可以减少屏幕的能耗。方法二:关闭不必要的

选择适合您的RX580的驱动版本选择适合您的RX580的驱动版本Dec 29, 2023 pm 05:34 PM

rx5808g安装什么驱动好20.5.1和20.4.2WHQL是指软件或驱动程序的版本号。这些版本号通常用于标识软件或驱动程序的更新或修复。在计算机领域中,WHQL代表Windows硬件质量实验室,它是微软公司用来测试和验证硬件和驱动程序的合规性和稳定性的机构。因此,20.5.1和20.4.2WHQL表示这些软件或驱动程序已经通过了微软的测试和验证,可以安全地使用在Windows操作系统中。AMDrx580显卡相对稳定驱动20.5.1和20.4.2WHQL是指软件或驱动程序的版本号。这些版本号通

赛扬g4900与i36100相比哪个更优?(赛扬g4900与i34170相比哪个更优?)赛扬g4900与i36100相比哪个更优?(赛扬g4900与i34170相比哪个更优?)Jan 01, 2024 pm 06:01 PM

赛扬g4900和i36100哪个好当涉及到赛扬G4900和I36100这两款处理器时,毫无疑问,I36100的性能更胜一筹。赛扬处理器通常被视为低端处理器,主要用于廉价笔记本电脑。而I3处理器则主要用于高端处理器,其性能非常出色。不论是玩游戏还是观看视频,使用I3处理器都不会出现任何卡顿情况。因此,如果你有可能,尽量选择购买英特尔I系列处理器,特别是用于台式机,这样你就能畅享网络世界的乐趣了。赛扬G4900T性能怎么样从性能方面来看,奔腾G4900T在频率方面表现出色,相比之前的版本,CPU性能

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools