aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Qi2020-07-21 18:19:05 -0400
committerBenjamin Qi2020-07-21 18:19:05 -0400
commitbc743e14ff582ce3cdfefc93ff0196b92dc0c96e (patch)
treef416d99a00d9b175e10538418320106bb66d47f2
parentf82793209f15844965791e29a1d531a8ed559e3b (diff)
matrix stub
-rw-r--r--content/5_Plat/Mat_Exp.mdx23
-rw-r--r--content/ordering.ts1
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",
]
}
],