This repository has been archived on 2022-06-22. You can view files and clone it, but cannot push or open issues or pull requests.
usaco-guide/content/6_Plat/DP_Ranges.mdx

34 lines
868 B
Text
Raw Normal View History

2020-06-24 23:08:16 +00:00
---
id: dp-ranges
title: "Dynamic Programming on Ranges"
author: Michael Cao
prerequisites:
- Gold - Introduction to Dynamic Programming
description: Solving the problem on every contiguous subarray of the original array.
2020-06-26 18:00:32 +00:00
frequency: 2
2020-06-24 23:08:16 +00:00
---
import { Problem } from "../models";
export const metadata = {
problems: {
general: [
new Problem("Gold", "248", "647", "Easy", false, ["Range DP"]),
new Problem("CSES", "Empty String", "1080", "Normal", false, ["Range DP"]),
new Problem("CF", "Zuma", "problemset/problem/607/B", "Normal", false, ["Range DP"]),
2020-06-30 20:25:02 +00:00
new Problem("Plat", "Greedy Pie Eaters", "972", "Hard", false, ["Range DP"]),
new Problem("Plat", "Subsequence Reversal", "698", "Hard", false, ["Range DP"]),
2020-06-24 23:08:16 +00:00
]
}
};
2020-06-28 02:11:09 +00:00
## Tutorial
2020-06-28 03:56:39 +00:00
??
2020-06-24 23:08:16 +00:00
## Problems
<problems-list problems={metadata.problems.general} />
2020-06-28 02:11:09 +00:00
* TC SRM 787 500