Sth about Educational DP Contest
Contest Website : atcoder.jp/contests/dp
TaskNum & TaskName & Status & Algorithm \\
\hline
A & Frog 1 & \color{green}{AC} & \text{简单线性DP} \\
\hline
B & Frog 2 & \color{green}{AC} & \text{简单线性DP,TaskA加强版} \\
\hline
C & Vacation & \color{green}{AC} & \text{简单线性DP} \\
\hline
D & Knapsack 1 & \color{green}{AC} & \text{OI背包} \\
\hline
E & Knapsack 2 & \color{yellow}{WA} & \text{01背包重大价小} \\
\hline
F & LCS & \color{green}{AC} & \text{最长公共子序列} \\
\hline
G & Longest Path & \color{green}{AC} & \text{DAG上DP} \\
\hline
H & Grid 1 & \color{green}{AC} & \text{矩阵DP} \\
\hline
I & Coins & \color{green}{AC} & \text{概率DP} \\
\hline
J & Sushi & \color{green}{AC} & \text{期望DP} \\
\hline
K & Stones & \color{green}{AC} & \text{博弈论} \\
\hline
L & Deque & \color{green}{AC} & \text{区间DP} \\
\hline
M & Candies & \color{green}{AC} & \text{前缀和优化线性DP} \\
\hline
N & Slimes & \color{green}{AC} & \text{区间DP} \\
\hline
O & Matching & \color{green}{AC} & \text{状压DP} \\
\hline
P & Independent Set & \color{green}{AC} & \text{树形DP} \\
\hline
Q & Flowers & & \\
\hline
R & Walk & & \\
\hline
S & Digit Sum & & \\
\hline
T & Permutation & & \\
\hline
U & Grouping & & \\
\hline
V & Subtree & & \\
\hline
W & Intervals & & \\
\hline
X & Tower & & \\
\hline
Y & Grid 2 & & \\
\hline
Z & Frog 3 & & \\
\end{array}
\]
A. Frog 1
We define \(f_i\) as the minimum cost for the frog to jump from the 1st stone to the \(i\)-th stone.
And we know that the frog can only jump from the \((i-1)\)-th stone or the \((i-2)\)th stone to the \(i\)-th stone. Thus, we can know the equation. It is:
\]
\(O(n)\) ~
B. Frog 2
\]
Why don't I use \(f_{i-j}\) to transfer to \(f_i\)? That's because I don't want to check if \(i-j < 0\). I think this is an unimportant skill
\(O(nk)\)
C. Vacation
Easy~
We define \(f_{i,j}\) is the maximum points of happiness at Day i, and we choose activity j at Day i. We cannot choose activity j at Day i+1.
So, \(f_{i,j}\) can be transfered from \(f_{i-1,k}\, ,k\neq j\).
\]
\]
\]
The answer is \(\operatorname{max}\{f_{n,1},f_{n,2},f_{n,3}\}\).
\(O(n)\) ~
D. Knapsack 1
01 backpack.
Because I cannot explain it in English, so I will only write the equation.
\(i\) is the i-th item, \(v\) refers to the remaining capacity.
\]
\(O(nw)\)
F. LCS
嘤语不会用了QAQ
定义 \(f_{i,j}\) 为 \(s\) 串前 \(i\) 个字符和 \(t\) 串前 \(j\) 个字符的LCS。
f_{i-1,j-1}+1, & s_i=t_j \\
\operatorname{max}\{f_{i-1,j},f_{i,j-1}\}, &\text{otherwise}
\end{cases} \]
\(O(n^2)\)
G. Longest Path
We have two methods to solve this task.
First, we use Topological sorting. Then, we can traverse the topological order from back to front.
Second, we can use the memorizing search method.
\]
\(O(n+m)\)
H. Grid 1
Matrix DP.
We can walk to the right and the bottom point.
So, we can walk from the left and the top point.
\]
\(O(HW)\)
I. Coins
Probability DP.
We define f[i][j] is the probability of \(j\) out of the first \(i\) coins turned heads.
So, if we need \(j\) coins turns heads, we have \(2\) options.
- There are \(j\) out of the first \(i - 1\) coins turned heads and the i-th coin flip to the back.
- There are \(j - 1\) out of the first \(i - 1\) coins turned heads and the i-th coin turn to the front.
\]
\(O(n^2)\)
J. Sushi
求期望。
设 \(f_{i,j,k}\) 为还剩 \(i\) 个盘子有一个寿司,\(j\) 个盘子有两个寿司,\(k\) 个盘子有三个寿司时的期望值。
方程不会写。
\(O(n^3)\)
K. Stones
Game theory.
If there left \(k\) stones left and this state can win, then there must a state of \(f\) that \(k-a_i=f\) and this state must lose.
\]
L. Deque
The first type of Range DP.
We define \(f_{i,j}\) as the maximum value the first people can get in the range \([i,j]\).
So, \(f_{i,j}\) can be translated from \(f_{i+1,j}\) and \(f_{i,j-1}\).
\]
\(O(n^2)\)
M. Candies
Prefix Sum Optimization.
First, we all know that
\]
But the time complexity of this algorithm is \(O(nk^2)\), So we cannot pass this task with this algo.
So we need Prefix Sum Optimization. We define \(pre_{m}\) as \(\sum_{k=1}^{m}f_{i,k}\).
\]
Sth about Educational DP Contest的更多相关文章
- Atcoder Educational DP Contest
前面简单一点的题直接过吧. A 暴力DP B 怎么还是暴力DP C 还是暴力DP D 直接背包 E 这个背包不太一样了,这里有一个技巧,就是因为价值很小,所以直接对价值背包,求出来达到某一个权值最小的 ...
- Atcoder Educational DP Contest 题解
A - Frog 1/B - Frog 2 入门... #include<cstdio> #define abs(a) ((a)>=0?(a):(-(a))) #define min ...
- Atcoder Educational DP Contest I - Coins (概率DP)
题意:有\(n\)枚硬币,每枚硬币抛完后向上的概率为\(p[i]\),现在求抛完后向上的硬币个数大于向下的概率. 题解:我们用二维的\(dp[i][j]\)来表示状态,\(i\)表示当前抛的是第\(i ...
- Educational DP Contest H - Grid 1 (DP)
题意:有一个\(n\)X\(m\)的图,"#"表示障碍物,"."表示道路,只能向右或向下走,问从左上角走到右下角的方案数. 题解:这题可以用bfs来搞,但dp更 ...
- Educational DP Contest G - Longest Path (dp,拓扑排序)
题意:给你一张DAG,求图中的最长路径. 题解:用拓扑排序一个点一个点的拿掉,然后dp记录步数即可. 代码: int n,m; int a,b; vector<int> v[N]; int ...
- Educational DP Contest F - LCS (LCS输出路径)
题意:有两个字符串,求他们的最长公共子序列并输出. 题解:首先跑个LCS记录一下dp数组,然后根据dp数组来反着还原路径,只有当两个位置的字符相同时才输出. 代码: char s[N],t[N]; i ...
- Educational DP Contest E - Knapsack 2 (01背包进阶版)
题意:有\(n\)个物品,第\(i\)个物品价值\(v_{i}\),体积为\(w_{i}\),你有容量为\(W\)的背包,求能放物品的最大价值. 题解:经典01背包,但是物品的最大体积给到了\(10^ ...
- 【DP】Educational DP Contest
这份 dp 题单的最后几题好难 orz. 前面的题比较简单,所以我会选取一些题来讲,其它的直接看代码理解吧 qwq. 传送门: https://atcoder.jp/contests/dp 全部 AC ...
- AtCoder Educational DP Contest 总结
前言 感觉都初一升初二了,再做这个题是不是有点太菜了啊-- 里面大概都是些 DP 板子题(确信,题目质量还挺高的,不过不涉及太难的优化(实际上只有最后一题是斜率优化). 不管了,还是写个 blog 来 ...
随机推荐
- BGP路由技术
BGP路由技术 目录 一.BGP概述 1.1.自治系统 1.2.动态路由分类 1.3.BGP概念 1.4.BGP的特征 1.5.BGP工作原理 二.命令配置 2.1.BGP配置思路 2.2.命令 一. ...
- 一篇技术博文引发的stylelint项目实践
背景 看到项目中团队成员写CSS样式风格迥异,CSS样式的书写顺序没有鲜明的规范.想到以前看过CSS样式书写顺序的文章,决定找出来,给团队成员科普一下.查阅了好几篇文章,觉得这篇文章给出的理由最硬核, ...
- Spring Cloud 专题之四:Zuul网关
书接上回: SpringCloud专题之一:Eureka Spring Cloud专题之二:OpenFeign Spring Cloud专题之三:Hystrix 经过前面三章对Spring Cloud ...
- 手把手教会你远程Linux虚拟机连接以及配置pytorch环境。
出一期用于连接远程Ubuntu系统并配置pytorch环境的教学.2021-07-07 13:35:57- 现在的矿难导致显卡大幅度的涨价对很多要做深度学习领域的小伙伴们非常的不友好,配置设备固然要掏 ...
- Basic remains java入门题
Basic remains input: b p m 读入p进制的p,m, 求p%m ,以b进制输出 1 import java.util.*; 2 import java.math ...
- 13.3示例:抽象的Number类
要点提示:Number类是数值包装类.BigInteger以及BigDecimal的抽象父类.
- Mac nasm 汇编入门
下载 brew install nasm code SECTION .data msg: db "hello world", 0x0a len: equ $-msg SECTION ...
- Kafka常用命令及详细介绍
目录 常用操作 Sentry kafka 清理 Kafka 术语 Kafka 主题剖析 Kafka 生产者 kafka 消费者和消费组 一致性和可用性 写入处理 失败处理 Kafka 客户端一致性 文 ...
- 用swoole实现异步任务队列
应用场景如下: 假如要发100封邮件,for循环100遍,这种方法显然是不可取的. 在一些比较繁杂的业务里,我们很可能有超过1万的邮件要群发.那我们怎么处理这个延迟的问题? 答案就是用异步.把&quo ...
- XCTF 3rd-GCTF-2017 hackme
一.查壳的老生常谈了..2分的题目就不多bb了. 二..elf文件,拖入ida,直接查找字符串,找到对应的函数 三.直接分析: 这里讲道理我当时很懵逼,因为进去这个函数后,发现伪码非常复杂,这里困了挺 ...