摘要:
/* もぺもぺ!! 先生买一朵小蓝花吗? 你看她多可爱啊! n 个花, m 种花瓶 d i j 表示前 i 种花放在前第 j 个花瓶中, 且第 i 种花放在第 j 个花瓶中时的最大美化值 d[i][j] = max(d[i][j], d[i-1][k] + a[i][j]), 其中 i∈[2,n], 阅读全文
摘要:
#include <stdio.h> inline int abs (const int &x) { return x < 0 ? -x : x; } int n; int fa[30003]; // 当前节点所在树的首领 int s[30003]; // 当前首领所在树的节点数量 int d[30 阅读全文