-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMain.java
37 lines (29 loc) Β· 1.04 KB
/
Main.java
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
32
33
34
35
36
37
package DP.P11048;
import java.io.*;
import java.util.*;
public class Main {
static int N, M;
static int[][] board;
static int[][] dp;
public static void main(String[] args) throws Exception {
System.setIn(new FileInputStream("src/DP/P11048/input.txt"));
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
N = Integer.parseInt(st.nextToken());
M = Integer.parseInt(st.nextToken());
board = new int[N+1][M+1];
for (int i = 1; i <= N; i++) {
st = new StringTokenizer(br.readLine());
for (int j = 1; j <= M; j++) {
board[i][j] = Integer.parseInt(st.nextToken());
}
}
dp = new int[N+1][M+1];
for (int i = 1; i <= N; i++) {
for (int j = 1; j <= M; j++) {
dp[i][j] = board[i][j] + Math.max(Math.max(dp[i-1][j], dp[i-1][j-1]), dp[i][j-1]);
}
}
System.out.println(dp[N][M]);
}
}