일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 장고
- codesandbox
- 프로그래밍 언어론
- 프로그래머스 완전탐색
- 자바
- websocket
- 자바스크립트
- 프로그래머스 자바
- react firebase
- 데이터모델링과마이닝
- 프로그래머스
- useState
- design pattern
- 코틀린
- 코딩테스트 고득점 Kit
- NextJS
- 디자인 패턴
- useEffect
- JavaScript
- 코딩테스트 고득점 Kit 완전탐색
- 리액트 훅
- 백준
- Java
- react hook
- 자바 공부
- React JS
- vanillaJS
- react
- 컴퓨터 네트워크
- 리액트
Archives
- Today
- Total
목록DP (2)
기록하는 개발자
[백준][JAVA] 11726: 2×n 타일링
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
Algorithm
2021. 7. 11. 16:15
[백준][JAVA] 9095: 1, 2, 3 더하기
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
Algorithm
2021. 7. 11. 16:11