Codeforces Round #384 (Div. 2)

Posted LittlePointer

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces Round #384 (Div. 2)相关的知识,希望对你有一定的参考价值。

A:

水题;

B:

水题;

C:

n,n+1,n*(n+1)

D:

dfs,在这棵树上找到两个不相交的子树,使的这两棵子树上所有节点的权值和最大;

dfs的过程中更新答案就好了;

E:

二分+状压dp,

二分答案,然后在check的时候,dp[i][j]表示前i个的状态为j时的最长长度,对于每个i,a[i]要么不选,要么作为最后一个向前找len,或者len+1来转移,

感觉跟上海那个D有点相似来着;

以上是关于Codeforces Round #384 (Div. 2)的主要内容,如果未能解决你的问题,请参考以下文章

Codeforces Round #384 (Div. 2)

Codeforces Round #384 (Div. 2) B. Chloe and the sequence(规律题)

Codeforces Round #384 (Div. 2) E. Vladik and cards 状压dp

Codeforces Round #384 (Div. 2)D. Chloe and pleasant prizes(树DP)

Codeforces Round #436 E. Fire(背包dp+输出路径)

[ACM]Codeforces Round #534 (Div. 2)