티스토리 뷰
두줄로 타일깔기는 라인 길이에 따라 타일을 배열하는 방법을 생각해서 처리하면된다.
구현할 때 재귀를 이용하여 처리하면 stack overflow 가 발생한다.
f(n) 을 구하는 방법은
f(n-1) 의 타일 개수에 1 x 2 타일을 하나 추가하는 방법과
f(n-2)의 타일 개수에 2 x 2 타일을 추가하는 방법
두개를 더하면 된다.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Scanner; | |
/** | |
* 정올, 1411, 다이나믹 | |
* 두 줄로 타일 깔기 | |
* | |
* @author whitebeard-k | |
* | |
*/ | |
public class Problem1411 { | |
public static int[] memo = new int[1000001]; | |
public static void main(String[] args) { | |
Scanner sc = new Scanner(System.in); | |
int n = sc.nextInt(); | |
sc.close(); | |
memo[1] = 1; | |
memo[2] = 3; | |
for(int i = 3; i <= n; i++) { | |
memo[i] = ((memo[i-1]) + (2*memo[i-2]))%20100529; | |
} | |
System.out.println(memo[n]); | |
} | |
} |
반응형
'알고리즘 > 정올' 카테고리의 다른 글
[정올][다이나믹] 2293, 동전 1 (0) | 2017.06.19 |
---|---|
[정올][bfs] 2613 토마토(고) (0) | 2017.05.12 |
[정올][다이나믹] 1408 전깃줄(초) (0) | 2017.04.24 |
[정올][분할정복] 1335 색종이만들기 (0) | 2017.04.14 |
[스크랩] [정올] 문제 해답 (0) | 2017.04.13 |
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 오류
- ubuntu
- hbase
- 파이썬
- HDFS
- AWS
- java
- HIVE
- 정올
- S3
- Python
- 하둡
- build
- 백준
- airflow
- error
- 하이브
- 알고리즘
- nodejs
- Tez
- yarn
- 다이나믹
- SPARK
- oozie
- bash
- SQL
- mysql
- Linux
- Hadoop
- emr
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함