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/3_Bronze/Ad_Hoc.mdx

25 lines
717 B
Text
Raw Normal View History

2020-07-07 02:10:02 +00:00
---
id: ad-hoc
title: Approaching Ad Hoc Problems
author:
description: "?"
frequency: 2
---
import { Problem } from "../models";
export const metadata = {
problems: {
general: [
new Problem("Bronze", "Mad Scientist", "1012", "Normal", false, [], ""),
new Problem("Bronze", "Cow Tipping", "689", "Hard", false, [], ""),
new Problem("Bronze", "Race", "989", "Very Hard", false, [], ""),
],
}
};
Some bronze problems (unfortunately) cannot be complete searched and may actually require some thought despite not requiring much implementation.
2020-07-10 21:56:07 +00:00
(ok idk whether there's actually something to be said about bronze ad hoc specifically)
2020-07-07 02:10:02 +00:00
<problems-list problems={metadata.problems.general} />