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

40 lines
1 KiB
Text
Raw Normal View History

2020-06-22 14:26:06 +00:00
---
id: eulerian-tours
title: "Eulerian Tours"
author: Benjamin Qi
prerequisites:
2020-06-22 20:51:12 +00:00
- Silver - Depth First Search
2020-06-22 19:59:16 +00:00
description: Visiting all edges of a graph exactly once.
2020-06-26 18:00:32 +00:00
frequency: 0
2020-06-22 14:26:06 +00:00
---
Has not appeared on a recent USACO contest.
2020-06-26 21:12:04 +00:00
import { Problem } from "../models";
export const metadata = {
problems: {
sam: [
new Problem("CSES", "Mail Delivery (Undirected)", "1691", "Easy", false, ["Euler Tour"], ""),
new Problem("CSES", "Teleporters (Directed)", "1693", "Easy", false, ["Euler Tour"], ""),
],
general: [
new Problem("CSA", "Matching Substrings", "matching-substrings", "Normal", false, [], ""),
new Problem("CF", "Johnny and Megan's Necklace", "contest/1361/problem/C", "Normal", false, ["Euler Tour"], ""),
new Problem("CF", "Data Center Drama", "contest/528/problem/C", "Normal", false, ["Euler Tour"], ""),
2020-06-26 21:12:04 +00:00
]
}
};
2020-06-22 14:26:06 +00:00
### Standard
2020-06-26 21:12:04 +00:00
<problems-list problems={metadata.problems.sam} />
2020-06-22 14:26:06 +00:00
### Tutorial
- CPH (19, Path & Circuits)
### Problems
2020-06-26 21:12:04 +00:00
<problems-list problems={metadata.problems.general} />