USACO Bronze 2016 February - Load Balancing

Author: Maggie Liu

Official Analysis

C++

Implementation

#include <iostream>
#include <cstdio>
#include <vector>
#include <set>
#include <algorithm>
using namespace std;
int main()
{
freopen("balancing.in", "r", stdin);

Join the USACO Forum!

Stuck on a problem, or don't understand a module? Join the USACO Forum and get help from other competitive programmers!