일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- #알고리즘 #백준 #5214 #백준5214 #algorithm #baekjoon #baekjoon5214 #C++
- 개발서
- 책리뷰
- 클린코드
- #알고리즘 #백준 #17472 #백준17472 #algorithm #baekjoon #baekjoon17472 #C++
- #알고리즘 #백준 #14888 #백준14888 #algorithm #baekjoon #baekjoon14888 #C++
- #알고리즘 #algorithm #프로그래머스 #2020카카오공채 #괄호변환 #programmers #C++
- 스레드 #동시성 #thread #process #
- #알고리즘 #백준 #2573 #백준2573 #algorithm #baekjoon #baekjoon2573 #C++
- #알고리즘 #백준 #12094 #백준12094 #algorithm #baekjoon #baekjoon12094 #C++
- #알고리즘 #백준 #17136 #백준17136 #algorithm #baekjoon #baekjoon17136 #C++
- 개발자취미
- #알고리즘 #백준 #15683 #백준15683 #algorithm #baekjoon #baekjoon15683 #C++
- #알고리즘 #백준 #4386 #백준4386 #algorithm #baekjoon #baekjoon4386 #C++
- #알고리즘 #백준 #3190 #백준3190 #algorithm #baekjoon #baekjoon3190 #C++
- #알고리즘 #백준 #1793 #백준1793 #algorithm #baekjoon #baekjoon1793 #C++
- #알고리즘 #백준 #1260 #백준1260 #algorithm #baekjoon #baekjoon1260 #Java
- #알고리즘 #백준 #15684 #백준15684 #algorithm #baekjoon #baekjoon15684 #C++
- #알고리즘 #algorithm #프로그래머스 #2020카카오공채 #문자열압축 #programmers #C++
- #알고리즘 #백준 #17140 #백준17140 #algorithm #baekjoon #baekjoon17140 #C++
- #알고리즘 #백준 #2580 #백준2580 #algorithm #baekjoon #baekjoon2580 #Java
- #알고리즘 #백준 #1525 #백준1525 #algorithm #baekjoon #baekjoon1525 #C++
- #알고리즘 #백준 #17837 #백준17837 #algorithm #baekjoon #baekjoon17837 #C++
- #알고리즘 #algorithm #프로그래머스 #2020카카오공채 #외벽점검 #programmers #C++
- #알고리즘 #백준 #2616 #백준2616 #algorithm #baekjoon #baekjoon2616 #Java
- #알고리즘 #백준 #1987 #백준1987 #algorithm #baekjoon #baekjoon1987 #Java
- #알고리즘 #백준 #17406 #백준17406 #algorithm #baekjoon #baekjoon17406 #C++
- #알고리즘 #백준 #2352 #백준2352 #algorithm #baekjoon #baekjoon2352 #C++
- #알고리즘 #algorithm #프로그래머스 #2020카카오공채 #블록이동하기 #programmers #C++
- CleanCode
Archives
- Today
- Total
개발자 일기장.
백준 2616. 소형기관차 본문
2616 소형기관차
문제해결 사진
문제 알고리즘
- DP
풀이방법
- 해당 위치 지점을 포함한 횟수 dp 배열을 구해서 푼다.
- 핵심 코드
import java.io.*;
import java.util.*;
public class Main {
private static final BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
private static int N, M; // N => number of train, M = count of valid train
private static int[][] dp; // dp[][] data
private static int MaxValue = 0; // Max Value
public static void main(String[] args) throws IOException {
init();
solution();
System.out.println(MaxValue);
}
// init & input code
public static void init() throws IOException {
N = Integer.parseInt(br.readLine());
dp = new int[4][];
for (int i = 0; i < 4; i++) {
dp[i] = new int[N + 1];
Arrays.fill(dp[i], 0);
}
StringTokenizer st = new StringTokenizer(br.readLine());
for (int i = 1; i <= N; i++) {
dp[0][i] = Integer.parseInt(st.nextToken());
}
M = Integer.parseInt(br.readLine());
}
// solution code
public static void solution() {
// one time
for (int i = M; i <= N; i++) {
dp[1][i] = sumUpTo(0, i);
}
// two time
for (int i = 2 * M; i <= N; i++) {
dp[2][i] = dp[1][i] + getMaxValue(1, i - M);
}
// three time & get MaxValue
for (int i = 3 * M; i <= N; i++) {
dp[3][i] = dp[1][i] + getMaxValue(2, i - M);
if (MaxValue < dp[3][i])
MaxValue = dp[3][i];
}
}
// get sum to
static int sumUpTo(int time, int index) {
int sum = 0;
for (int i = 0; i < M; i++) {
sum += dp[time][index - i];
}
return sum;
}
// get MaxValue from Index
static int getMaxValue(int time, int index) {
int value = 0;
for (int i = M; i <= index; i++) {
if (value < dp[time][i])
value = dp[time][i];
}
return value;
}
}
문제 후 느낀점
- 기분 좋게 풀린 문제
'취업 > Algorithm.' 카테고리의 다른 글
백준 5214. 환승 (0) | 2020.05.30 |
---|---|
백준 3190. 뱀 (0) | 2020.05.30 |
백준 2580. 스도쿠 (0) | 2020.05.30 |
백준 2532. 반도체 설계 (0) | 2020.05.30 |
백준 1987. 알파벳 (0) | 2020.05.30 |