USACO Silver 2018 February - Snow Boots

Author: Qi Wang

Official Analysis

Java

//Created by Qi Wang
import java.util.*;
import java.io.*;
public class snowboot {
static List<Pair<Integer, Integer>> B = new ArrayList<>();
static int[] D;
static boolean[][] vist;
static int N, M, A=10000;
public static void main(String[] args) throws IOException {

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!