반응형
Notice
Recent Posts
Recent Comments
Link
지구정복
[DP] 이코테 - 바닥공사 본문
728x90
반응형
-자바
package dp;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
public class FloorConstruction1 {
private static BufferedWriter bw =
new BufferedWriter( new OutputStreamWriter(System.out));
private static int n; //바닥 가로 길이
private static int[] dp = new int[1001]; //DP배열
public static void main(String[] args) throws NumberFormatException, IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
n = Integer.parseInt( br.readLine() );
dp[1] = 1;
dp[2] = 3;
for( int i=3; i<=n; i++ ) dp[i] = ( dp[i-1]+2*dp[i-2] )%796796;
bw.write( dp[n] + "\n" );
bw.close();
br.close();
}
}
-파이썬
n = int(input())
dp = [0] * 1001
dp[1] = 1
dp[2] = 3
for i in range( 3, n+1 ):
dp[i] = ( dp[i-1] + 2*dp[i-2] )%796796
print( dp[n] )
728x90
반응형
'데이터 엔지니어링 정복 > Algorithm' 카테고리의 다른 글
[DP] 백준 - 카드 구매하기 (0) | 2021.07.13 |
---|---|
[DP] 이코테 - 호율적인 화폐구성 (0) | 2021.07.13 |
[DP] 이코테 - 개미전사 (0) | 2021.07.12 |
[DP] 백준 - 계단오르기 (0) | 2021.07.11 |
[DP] 백준 - 1,2,3 더하기 (0) | 2021.07.10 |
Comments