반응형
https://www.acmicpc.net/problem/11660
2차원 부분합이었습니다.
풀이방법
2차원 넓이 면적으로부터 다른 2차원의 넓이를 적절히 뺴는 방법을 생각합니다.
Code
#include <iostream>
#define fastio ios::sync_with_stdio(false); cin.tie(NULL);
using namespace std;
long long a[1025][1025],s[1025][1025];
int main() {
fastio;
int n,m;
cin >> n >> m;
for (int i = 1; i <= n; i++){
for (int j = 1; j <= n; j++){
cin >> a[i][j];
s[i][j] = s[i - 1][j] + s[i][j - 1] - s[i-1][j-1] + a[i][j];
}
}
int x1, y1, x2, y2;
while (m--){
cin >> x1 >> y1 >> x2 >> y2;
cout << s[x2][y2] - s[x1-1][y2] - s[x2][y1-1] + s[x1-1][y1-1] <<'\n';
}
}
'Algorithm > DP(Dynamic Programing)' 카테고리의 다른 글
(C++) - 백준(BOJ) 10835번 : 카드게임 (0) | 2020.02.25 |
---|---|
(C++) - 백준(BOJ) 10025번 : 게으른백곰 답 (0) | 2020.02.21 |
(C++) - 백준(BOJ)코딩 1149번 : RGB거리 (0) | 2017.02.13 |
(C++) - 백준(BOJ) 11051번 : 이항 계수2 (0) | 2017.02.05 |
(C++) - 백준(BOJ)코딩 2579번 : 계단오르기 답 (0) | 2017.01.29 |