USACO January 2016 Bronze - Angry Cows

Author: Óscar Garries

Official Editorial: http://www.usaco.org/current/data/sol_angry_bronze_jan16.html

C++

C++ Implementation

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
int main(){
ios_base::sync_with_stdio(0); cin.tie(0);
freopen("angry.in", "r", stdin);

Give Us Feedback on USACO January 2016 Bronze - Angry Cows!