일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- ubuntu
- 백준 15787번
- 백준 18310번
- 다이나믹프로그래밍
- 백준 16918번
- 깃헙
- AWS
- 다이나믹 프로그래밍
- 머신러닝과 딥러닝
- 백준 1253번
- 백준 17451번
- react
- 명품자바
- 백준 1331번
- 그리디
- Python
- 백준 1987
- SQL
- 모각코
- 백준 3085번
- javascript
- 그래프
- 백준 2512번
- SWEA 15612번
- 자바
- MySQL
- 알고리즘
- java_programming
- HUFS 모각코 캠프
- 백준
Archives
- Today
- Total
차곡차곡
[BOJ/Python, Java] 백준 14606번 - 피자 (Small) 본문
백준 #1466 피자(small)
Python ver.
n = int(input())
enjoy = [0 for _ in range(n+1)]
for i in range(1, n+1):
if i == 1:
continue
else:
for j in range(1, i//2+1):
enjoy[i] = max(enjoy[i], j * (i-j) + enjoy[j] + enjoy[i-j])
print(enjoy[-1])
Java ver.
import java.util.Arrays;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int[] enjoy = new int[n+1];
for (int i = 1; i < enjoy.length; i++) {
if (i == 1) {
continue;
}
else {
for (int j = 1; j < i/2+1; j++) {
enjoy[i] = Math.max(enjoy[i], j * (i-j) + enjoy[j] + enjoy[i-j]);
}
}
}
System.out.println(enjoy[n]);
} // end of main
} // end of class
참고
'CS > Algorithm' 카테고리의 다른 글
[BOJ/Python, Java] 백준 4779번 - 칸토어 집합 (0) | 2023.07.31 |
---|---|
[BOJ/Python, Java] 백준 17484번 - 진우의 달 여행 (Small) (0) | 2023.07.26 |
[codetree/python] 코드트리 - 특정 조건에 맞게 k개 중에 1개를 n번 뽑기 (0) | 2023.05.17 |
[codetree/python] 코드트리 - 겹치지 않게 선분 고르기 (1) | 2023.05.16 |
[codetree/python] 코드트리 - 강력한 폭발 (0) | 2023.05.16 |
Comments