삐까냥의 파도타기
문제 출처 : https://www.acmicpc.net/problem/14889 2018년 4월 6일 - 다듬지 않은 시험 코드 (30분) public class Q14889 { static boolean[] isVisit;static int people, halfPeople, minResult = -1;static int[][] values;public static void main(String[] args) {Scanner sc = new Scanner(System.in);people = sc.nextInt();halfPeople = people / 2;isVisit = new boolean[people];values = new int[people][people];for (int i = 0; i <..
문제 출처 : https://www.acmicpc.net/problem/148902018년 4월 6일 - 시험용 코드(45분) import java.util.HashSet;import java.util.Scanner; public class Q14890 { public static void main(String[] args) {Scanner sc = new Scanner(System.in);int mapSize = sc.nextInt();int[][] map = new int[mapSize][mapSize];int helperSize = sc.nextInt();for (int i = 0; i < mapSize; i++) {for (int j = 0; j < mapSize; j++) {map[i][j] =..
문제 출처 : https://www.acmicpc.net/problem/3190 문제에서 가장 어려웠던 부분(헷갈린 부분) L : 왼쪽, D : 오른쪽으로 방향을 변경한다.-> 현재 방향에서 왼쪽, 오른쪽으로 방향을 바꾼다는 의미 2018년 4월 6일 - 다듬지 않은 시험용 코딩(1시간 37분 소요) public class Q3190 { public static void main(String[] args) {Scanner sc = new Scanner(System.in);int mapSize = sc.nextInt();int[][] map = new int[mapSize][mapSize];int appleSize = sc.nextInt();for (int i = 0; i < appleSize; i++) ..