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/5_Plat/Lagrange.mdx
Benjamin Qi 0c1d150c1b ++
2020-07-18 23:32:24 -04:00

38 lines
925 B
Text

---
id: lagrange
title: "Lagrangian Relaxation"
author: Benjamin Qi
description: "aka Aliens Trick"
prerequisites:
- convex-hull
frequency: 1
---
import { Problem } from "../models";
export const metadata = {
problems: {
sample: [
new Problem("Plat", "Tall Barn", "697", "Easy", false, [], ""),
],
probs: [
new Problem("CF","New Year & Handle Change", "contest/1279/problem/F", "Normal", false, [], ""),
new Problem("Kattis", "Blazing New Trails", "blazingnewtrails", "Normal", false, [], ""),
new Problem("ojuz", "Aliens", "IOI16_aliens", "Hard", false, [], ""),
]
}
};
adding lambda\*smth
<Problems problems={metadata.problems.sample} />
## Tutorial
<Resources>
<Resource source="Mamnoon Siam" title="Attack on Aliens" url="https://mamnoonsiam.github.io/posts/attack-on-aliens.html"></Resource>
</Resources>
## Problems
<Problems problems={metadata.problems.probs} />