本文主要是介绍[NOIP模拟赛]创世纪,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
创世纪
题解
好水的题呀
我们根据它边连得性质,很容易发现它是一个基环树。
我们对于树上,只要使得每个节点至少有一个点不被选就好了,用树形dp可以解决,分别求出选这个点与不选这个点时的值。
而对于环上的部分,我们就找到两个相邻的点,跑一边环用先前的dp值找出环的最大值,加在一起就行了。
源码
#include<cstdio>
#include<cmath>
#include<cstring>
#include<iostream>
#include<algorithm>
#include<queue>
#include<map>
#include<vector>
#include<bitset>
#include<set>
using namespace std;
#define MAXN 1000005
typedef long long LL;
typedef pair<int,int> pii;
#define gc() getchar()
template<typename _T>
void read(_T &x){_T f=1;x=0;char s=gc();while(s>'9'||s<'0'){if(s=='-')f=-1;s=gc();}while(s>='0'&&s<='9'){x=(x<<3)+(x<<1)&#
这篇关于[NOIP模拟赛]创世纪的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!