diff options
author | Benjamin Qi | 2020-07-21 18:19:05 -0400 |
---|---|---|
committer | Benjamin Qi | 2020-07-21 18:19:05 -0400 |
commit | bc743e14ff582ce3cdfefc93ff0196b92dc0c96e (patch) | |
tree | f416d99a00d9b175e10538418320106bb66d47f2 | |
parent | f82793209f15844965791e29a1d531a8ed559e3b (diff) |
matrix stub
-rw-r--r-- | content/5_Plat/Mat_Exp.mdx | 23 | ||||
-rw-r--r-- | content/ordering.ts | 1 |
2 files changed, 24 insertions, 0 deletions
diff --git a/content/5_Plat/Mat_Exp.mdx b/content/5_Plat/Mat_Exp.mdx new file mode 100644 index 0000000..c11874e --- /dev/null +++ b/content/5_Plat/Mat_Exp.mdx @@ -0,0 +1,23 @@ +--- +id: mat-exp +title: "Matrix Exponentiation" +author: "?" +description: "?" +prerequisites: + - intro-dp +frequency: 1 +--- + +import { Problem } from "../models"; + +export const problems = { + usaco: [ + new Problem("Plat", "COWBASIC", "746", "Hard", false, [], ""), + ] +}; + +<Resources> + <Resource source="CF" url="https://codeforces.com/blog/entry/80195" title="Errichto - Matrix Exponentiation">video + problemset</Resource> +</Resources> + +<Problems problems={problems.usaco} />
\ No newline at end of file diff --git a/content/ordering.ts b/content/ordering.ts index c0edfbc..de6f764 100644 --- a/content/ordering.ts +++ b/content/ordering.ts @@ -253,6 +253,7 @@ const MODULE_ORDERING: {[key in SectionID]: Chapter[]} = { items: [ "bitsets", "fracture", + "mat-exp", ] } ], |