728x90
누적합 기믹만 알면 ㅈㄴ쉬움 진짜..
모든 알고리즘이 그러하듯..
파훼법을 아니까 왜 이런게 어렵게 느껴졌나 싶음
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
public class Main {
private static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
private static BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
public static void main(String[] args) throws IOException{
String[] str = br.readLine().split(" ");
int N = stoi(str[0]);
int M = stoi(str[1]);
int[][] table = new int[N+1][N+1];
int[][] preSum = new int[N+1][N+1];
for(int i=1; i<=N; i++) {
str = br.readLine().split(" ");
for(int j=1; j<=N; j++) {
table[i][j] = stoi(str[j-1]);
preSum[i][j] =
preSum[i-1][j] + preSum[i][j-1]
- preSum[i-1][j-1] + table[i][j];
}
}
for(int i=1; i<=M; i++) {
str = br.readLine().split(" ");
int x1 = stoi(str[0]);
int y1 = stoi(str[1]);
int x2 = stoi(str[2]);
int y2 = stoi(str[3]);
int res =
preSum[x2][y2]
-preSum[x1-1][y2]-preSum[x2][y1-1]
+preSum[x1-1][y1-1];
System.out.println(res);
}
// bw.write("");
// bw.flush();
// bw.close();
}
private static int stoi(String input) {
return Integer.parseInt(input);
}
}
|
cs |
'알고리즘 풀이 > 백준' 카테고리의 다른 글
[백준][Java] 1912번 연속합 (DP, 누적합) (0) | 2021.09.19 |
---|---|
[백준][Java] 21318번 피아노 체조 (누적합) (0) | 2021.09.19 |
[백준][Java] 19951번 태상이의 훈련소 생활 (누적합) (0) | 2021.09.19 |
[백준][Java] 10986번 나머지 합 (누적합, 수학) (0) | 2021.09.18 |
[백준][Java] 11659번 구간 합 구하기 4 (누적합) (0) | 2021.09.18 |