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/Lagrange.mdx

40 lines
970 B
Text
Raw Normal View History

2020-06-26 21:12:04 +00:00
---
id: lagrange
2020-06-27 00:33:06 +00:00
title: "Lagrangian Relaxation"
2020-06-26 21:12:04 +00:00
author: Benjamin Qi
2020-06-27 00:33:06 +00:00
description: "aka Aliens Trick"
2020-06-26 21:12:04 +00:00
prerequisites:
- Plat - Convex Hull
2020-06-28 16:03:46 +00:00
frequency: 1
2020-06-26 21:12:04 +00:00
---
2020-06-27 00:33:06 +00:00
import { Problem } from "../models";
export const metadata = {
problems: {
sample: [
new Problem("Plat", "Tall Barn", "697", "Easy", false, [], ""),
],
probs: [
2020-06-28 02:11:09 +00:00
new Problem("CF","New Year & Handle Change", "contest/1279/problem/F", "Normal", false, [], ""),
new Problem("Kattis", "Blazing New Trails", "blazingnewtrails", "Normal", false, [], ""),
2020-06-27 00:33:06 +00:00
new Problem("ojuz", "Aliens", "IOI16_aliens", "Hard", false, [], ""),
]
}
};
2020-06-28 02:11:09 +00:00
adding lambda\*smth
2020-06-26 21:12:04 +00:00
2020-06-27 00:33:06 +00:00
<problems-list 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
2020-06-28 16:03:46 +00:00
<problems-list problems={metadata.problems.probs} />
(300iq insane problems???)