Game Develop

[Algorithm]Baekjoon 15724번 : 주지수 본문

Algorithm/Baekjoon

[Algorithm]Baekjoon 15724번 : 주지수

MaxLevel 2024. 10. 17. 19:23

https://www.acmicpc.net/problem/15724

 

 

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
56
57
58
59
60
61
62
#include <iostream>
#include <string>
#include <map>
#include <vector>
#include <algorithm>
#include <math.h>
#include <queue>
#include <functional>
#include <sstream>
#include <memory.h>
#include <deque>
#include <set>
 
using namespace std;
 
int n, m, k;
int arr[1026][1026= { 0 };
int dp[1026][1026= { 0 };
 
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
 
    cin >> n >> m;
 
    for (int i = 1; i <= n; ++i)
    {
        for (int j = 1; j <= m; ++j)
        {
            cin >> arr[i][j];
        }
    }
 
    for (int i = 1; i <= n; ++i)
    {
        for (int j = 1; j <= m; ++j)
        {
            dp[i][j] = arr[i][j] + dp[i - 1][j] + dp[i][j - 1- dp[i - 1][j - 1];
        }
    }
 
    cin >> k;
 
    vector<int> results;
    for (int i = 0; i < k; ++i)
    {
        int sy, sx, dy, dx;
        cin >> sy >> sx >> dy >> dx;
 
        results.push_back(dp[dy][dx] - dp[sy-1][dx] - dp[dy][sx-1+ dp[sy-1][sx-1]);
    }
 
    for (int i = 0; i < k; ++i)
    {
        printf("%d\n", results[i]);
    }
    return 0;
}
 
 
cs

 

누적합 기본예제문제이다.

1,1 부터 n,m 까지 누적합업데이트는 물론, 이걸 기반으로 특정위치 sy,sx 부터 dy,dx까지의 합을 구할 줄 알아야 한다.