Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Frustum
- RVO
- UE5
- 티스토리챌린지
- winapi
- RootMotion
- NRVO
- UnrealEngine5
- DirectX11
- directx
- 1563
- const
- Unreal Engine5
- algorithm
- baekjoon
- C
- C++
- DeferredRendering
- 언리얼엔진5
- 줄 세우기
- 2294
- 백준
- softeer
- IFileDialog
- GeeksForGeeks
- 팰린드롬 만들기
- 오블완
- 프로그래머스
- UnrealEngine4
- Programmers
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 15724번 : 주지수 본문
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까지의 합을 구할 줄 알아야 한다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 1344번 :: 축구 (2) | 2024.10.19 |
---|---|
[Algorithm]Baekjoon 14863번 :: 서울에서 경산까지 (0) | 2024.10.19 |
[Algorithm]Baekjoon 1813번 : 후보 추천하기 (0) | 2024.10.17 |
[Algorithm]Baekjoon 6987번 : 월드컵 (0) | 2024.10.17 |
[Algorithm]Baekjoon 1577번 : 도로의 개수 (1) | 2024.10.16 |