일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 백준
- react
- 코틀린
- 프로그래밍 언어론
- 코딩테스트 고득점 Kit 완전탐색
- websocket
- 디자인 패턴
- 프로그래머스 완전탐색
- react firebase
- 컴퓨터 네트워크
- 프로그래머스
- 장고
- JavaScript
- vanillaJS
- 리액트 훅
- codesandbox
- 자바스크립트
- 자바 공부
- useEffect
- design pattern
- React JS
- 자바
- useState
- 리액트
- NextJS
- Java
- 프로그래머스 자바
- 데이터모델링과마이닝
- react hook
- 코딩테스트 고득점 Kit
- Today
- Total
목록dynamic programming (4)
기록하는 개발자
https://www.acmicpc.net/problem/11726 11726번: 2×n 타일링 2×n 크기의 직사각형을 1×2, 2×1 타일로 채우는 방법의 수를 구하는 프로그램을 작성하시오. 아래 그림은 2×5 크기의 직사각형을 채운 한 가지 방법의 예이다. www.acmicpc.net import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int dp[] = new int [n+1]; dp[1]=1; dp[0]=1; if(n>=2){ for(int j=2;j
https://www.acmicpc.net/problem/9095 9095번: 1, 2, 3 더하기 각 테스트 케이스마다, n을 1, 2, 3의 합으로 나타내는 방법의 수를 출력한다. www.acmicpc.net import java.util.*; import java.math.*; public class Main { static int dp[] = new int [11]; public static void main(String[] args) { Scanner sc = new Scanner(System.in); int t = sc.nextInt(); dp[1]=1; dp[2]=2; dp[3]=4; for(int j=4;j
https://www.acmicpc.net/problem/1463 1463번: 1로 만들기 첫째 줄에 1보다 크거나 같고, 106보다 작거나 같은 정수 N이 주어진다. www.acmicpc.net import java.util.Scanner; public class Main { static Integer[] dp; public static void main(String[] args) { Scanner scan = new Scanner(System.in); int N = scan.nextInt(); dp = new Integer[N + 1]; dp[0] = dp[1] = 0; System.out.print(recur(N)); } static int recur(int N) { if (dp[N] == null..
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner in = new Scanner(System.in); int N = in.nextInt(); if (N == 4 || N == 7) System.out.println(-1); else if (N % 5 == 0) System.out.println(N / 5); else if (N % 5 == 1 || N % 5 == 3) System.out.println((N / 5) + 1); else if (N % 5 == 2 || N % 5 == 4) System.out.println((N / 5) + 2); } }