--- id: more-flows title: "More Advanced Applications of Maximum Flow" author: Benjamin Qi prerequisites: - Platinum - Flows description: "?" frequency: 0 --- import { Problem } from "../models"; export const metadata = { problems: { hungry: [ new Problem("DMOJ", "Hungry Squirrels", "wac4p6", "Normal", false, [], ""), ], lower: [ new Problem("CF", "Diverse Singing", "https://codeforces.com/group/ZFgXbZSjvp/contest/274398/problem/C", "Normal", false, [], ""), new Problem("CF", "Captain America", "contest/704/problem/D", "Normal", false, [], ""), new Problem("CF", "Incorrect Flow", "contest/708/problem/D", "Normal", false, [], ""), new Problem("AC", "Multi-Path Story", "https://atcoder.jp/contests/jag2013summer-day4/tasks/icpc2013summer_day4_i", "Normal", false, [], ""), ], } }; ## Flow with Lower Bounds ### Tutorial ### Problems