OSDN Git Service

style: format markdown files with remark-lint
author24OI-bot <15963390+24OI-bot@users.noreply.github.com>
Thu, 29 Aug 2019 12:59:12 +0000 (08:59 -0400)
committer24OI-bot <15963390+24OI-bot@users.noreply.github.com>
Thu, 29 Aug 2019 12:59:12 +0000 (08:59 -0400)
docs/dp/dynamic.md

index 7d44cf4..3dcd93f 100644 (file)
@@ -1,10 +1,10 @@
-动态DP问题是猫锟在WC2018讲得黑科技,一般用来解决树上的DP问题,同时支持点权(边权)修改操作。
+动态 DP 问题是猫锟在 WC2018 讲得黑科技,一般用来解决树上的 DP 问题,同时支持点权(边权)修改操作。
 
-因为NOIP2018D2T3考了所以突然风靡Oier圈。
+因为 NOIP2018D2T3 考了所以突然风靡 Oier 圈。
 
 ## 例子
 
-以这道模板题为例子讲解一下动态DP的过程。
+以这道模板题为例子讲解一下动态 DP 的过程。
 
 ??? note " 例题[洛谷 P4719 【模板】动态 DP](https://www.luogu.org/problem/P4719) "
     给定一棵 $n$ 个点的树,点带点权。有 $m$ 次操作,每次操作给定 $x,y$ 表示修改点 $x$ 的权值为 $y$ 。你需要在每次操作之后求出这棵树的最大权独立集的权值大小。