
백준 15686 치킨 배달 - JAVA
·
알고리즘/백준
15686 문제 링크https://www.acmicpc.net/problem/15686 문제 설명 입출력 코드123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960import java.io.*;import java.util.*; public class Main { static int N,M; static int result = Integer.MAX_VALUE; static int[][] arr; static boolean[] visit; static Listint[]> chiken = new ArrayList>(); static ..