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 |
Tags
- 백트래킹
- ue5
- 다익스트라
- 알고리즘
- 백준
- 구현
- 다이나믹 프로그래밍
- XR Interaction Toolkit
- Unreal Engine 5
- 투 포인터
- 문자열
- 트리
- 재귀
- 유니온 파인드
- 유니티
- 시뮬레이션
- Team Fortress 2
- 정렬
- 브루트포스
- BFS
- 누적 합
- VR
- DFS
- 자료구조
- 스택
- 우선순위 큐
- 그래프
- 그리디 알고리즘
- 수학
- c++
Archives
- Today
- Total
1일1알
백준 15724번 주지수 C++ 본문
https://www.acmicpc.net/problem/15724
누적합
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <list>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
using namespace std;
using int64 = long long;
int n, m;
vector<vector<int>> rowSum;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> m;
rowSum = vector<vector<int>>(n + 1, vector<int>(m + 1, 0));
for (int i = 1; i <= n; i++) {
int sum = 0;
for (int j = 1; j <= m; j++) {
int input;
cin >> input;
sum += input;
rowSum[i][j] = sum;
}
}
int k;
int row1, row2, col1, col2;
cin >> k;
for (int i = 0; i < k; i++) {
int sum = 0;
cin >> row1 >> col1 >> row2 >> col2;
for (int j = row1; j <= row2; j++) {
sum += rowSum[j][col2] - rowSum[j][col1 - 1];
}
cout << sum << "\n";
}
}
'알고리즘' 카테고리의 다른 글
백준 3474번 교수가 된 현우 C++ (0) | 2022.10.26 |
---|---|
백준 14426번 접두사 찾기 C++ (0) | 2022.10.25 |
백준 17129번 윌리암슨수액빨이딱따구리가 정보섬에 올라온 이유 C++ (0) | 2022.10.23 |
백준 12869번 뮤탈리스크 C++ (0) | 2022.10.22 |
백준 14271번 그리드 게임 C++ (0) | 2022.10.14 |