목록Data Structure & Algorithm/PS - JAVA (270)
Dev.baelanche
예제의 값으로 풀이 방법을 서술해보겠다. R G B dp[0][i] = a[0][i] 26 40 83 dp 배열의 첫번째 인덱스에는 입력받은 값을 받는다. R G B dp[0][i] 26 40 83 dp[1][i] 49 + 40 60 + 26 57 + 26 색상은 연속으로 칠할 수 없으므로 다른 색상 중 최소값을 받아 더한다. R G B dp[0][i] 26 40 83 dp[1][i] 49 + 40 60 + 26 57 + 26 dp[2][i] 13 + 60 + 26 89 + 57 + 26 99 + 60 + 26 마찬가지로 채워준다. dp[i][0] = min(dp[i-1][1], dp[i-1][2]) + a[i][0]; dp[i][1] = min(dp[i-1][0], dp[i-1][2]) + a[i][1..
경우를 나열해보면 평론가수 - (소시지 수와 평론가수의 최대공약수) 를 유추할 수 있다. public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int m = sc.nextInt(); System.out.println(m - gcd(n, m)); sc.close(); } public static int gcd(int x, int y) { while(y != 0) { int tmp = y; y = x%y; x = tmp; } return x; } }
입력한 네 수 중 두개씩을 이어붙여 하나의 수로 만든다. 수가 자료형의 범위를 넘어가게 되므로 수를 문자열로 취급하여 풀어야 한다. 정말 지저분하지만 내가 푼 방법을 서술해보겠다. 1. 수를 문자형으로 입력받아 이어붙인다. 2. 만들어진 두 수의 길이를 비교해 짧은쪽의 앞을 0으로 채운다. 3. 맨 끝 인덱스부터 더하여 10 이상일 경우 자리올림을 한다. 3 - 1. 자리올림할때 맨 첫 자리일 경우엔 앞에 1을 채운다. public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String a = sc.next(); String b = sc.next(); String c = sc.next(..
주어진 정수의 자릿수가 증가할때마다 연산의 횟수도 증가한다. 1. n 이 10보다 클때 반복 연산한다. 2. k는 0부터 연산할때마다 1씩 증가하는 변수로 10^k로 n을 나눠 반올림 후 다시 10^k 를 곱해준다. 3. 출력 예제는 자연수이므로 자료형에 신경쓴다. public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); double n = sc.nextInt(); int k = 1; for(int i=10; true; i*=10) { if(n > i) { int pow = (int)Math.pow(10, k); n /= pow; n = Math.round(n); n *= pow; } e..
주어진 사탕 가격을 k 자리에서 반올림하여 출력한다. 1. 값의 범위를 고려하여 자료형은 double 로 했다. 2. 주어진 가격을 10의 배수로 나누어 소수점을 만들어 반올림 후 다시 10의 배수를 곱했다. 3. 위 방법대로 하면 10의 배수는 10^k 이다. public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); double c = sc.nextLong(); int k = sc.nextInt(); long pow = (long)Math.pow(10, k); c /= pow; c = Math.round(c); c *= pow; System.out.println((long)c); sc...
노드의 간선의 정보를 받아 DFS, BFS 로 구현한다. 1. 그래프 형태로 정보를 받아 저장한다. 2. visited 배열을 만들어 방문 이력을 기록한다. 3. DFS 및 BFS 를 구현한다. public class Main { static int n; static int m; static int a[][]; static boolean visited[]; public static void main(String[] args) { Scanner sc = new Scanner(System.in); n = sc.nextInt(); m = sc.nextInt(); a = new int[n+1][n+1]; visited = new boolean[n+1]; int V = sc.nextInt(); for(int i=..
1. 일의 시간 정보를 배열에 담는다. 2. 일이 들어온 순서대로만 처리하므로 배열의 앞 인덱스부터 수행 시간을 비교하여 푼다. public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int t = sc.nextInt(); int a[] = new int[n]; int cnt = 0; for(int i=0; i
가장 처음 겹치는 글자의 인덱스를 구하여 배열의 가로, 세로의 인덱스로 사용한다. public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String a = sc.next(); String b = sc.next(); int x = 0; int y = 0; char c[][] = new char[b.length()][a.length()]; for(int i=0; i