일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 그리디
- 백준12845
- 구현
- 백준2606
- 타겟넘버
- 백준4796
- 백준1388
- jsp
- 백준11047
- 프로그래머스43165
- 자바
- Spring Framework MVC
- 펠린드롬
- 동전0
- BFS
- 바닥장식
- sql
- Java
- 백준1969
- 백준11000
- 알고리즘
- javascript
- 백준
- 백준10988
- BFS/DFS
- 신입 사원
- dfs
- 강의실배정
- 백준 1946
- 프로그래머스
- Today
- Total
목록알고리즘/DP (4)
The Kkang's man
문제 풀이 import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Tile_11726{ public static void main(String[] args) throws IOException{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int n = Integer.parseInt(br.readLine()); int[] d = new int[n+2]; d[1] = 1; d[2] = 2; for(int i=3; i
문제 풀이 import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Plus123_9095 { public static void main(String[] args) throws IOException{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringBuffer sb = new StringBuffer(); int T = Integer.parseInt(br.readLine()); int[] num = new int[12]; num[1] = 1;// 1을 만드는 경우의 수 num[2] ..
문제 풀이 import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Stair_2579 { public static void main(String[] args) throws IOException{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int n = Integer.parseInt(br.readLine()); int[] stairs = new int[301]; int[] score = new int[301]; int i; for(i=1; i
문제 풀이 import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.StringTokenizer; public class LDS_11722 { public static void main(String[] args) throws IOException{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st; int n = Integer.parseInt(br.readLine()); int[] A = new int[n]; int[] dp = new int[n]; i..