[BOJ] 11659 구간 합 구하기 4
11025 단어 baekjoonPrefix sum코딩테스트Prefix sum
🔗 Problem
https://www.acmicpc.net/problem/11659
👩💻 Code
package baekjoon;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;
import java.util.StringTokenizer;
// 구간 합 구하기 4
public class BJ11659 {
static int n;
static int m;
static int[] total;
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringBuilder sb = new StringBuilder();
StringTokenizer st = new StringTokenizer(br.readLine());
n = Integer.parseInt(st.nextToken());
m = Integer.parseInt(st.nextToken());
total = new int[n+1];
st = new StringTokenizer(br.readLine());
for(int i = 1; i <= n; i++) {
if(i == 1) total[i] = Integer.parseInt(st.nextToken());
else total[i] = total[i-1] + Integer.parseInt(st.nextToken());
}
for(int i = 0; i < m; i++) {
st = new StringTokenizer(br.readLine());
int start = Integer.parseInt(st.nextToken());
int end = Integer.parseInt(st.nextToken());
long sum = total[end] - total[start-1];
sb.append(sum).append("\n");
}
System.out.println(sb.toString());
}
}
💡 Learned
package baekjoon;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;
import java.util.StringTokenizer;
// 구간 합 구하기 4
public class BJ11659 {
static int n;
static int m;
static int[] total;
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringBuilder sb = new StringBuilder();
StringTokenizer st = new StringTokenizer(br.readLine());
n = Integer.parseInt(st.nextToken());
m = Integer.parseInt(st.nextToken());
total = new int[n+1];
st = new StringTokenizer(br.readLine());
for(int i = 1; i <= n; i++) {
if(i == 1) total[i] = Integer.parseInt(st.nextToken());
else total[i] = total[i-1] + Integer.parseInt(st.nextToken());
}
for(int i = 0; i < m; i++) {
st = new StringTokenizer(br.readLine());
int start = Integer.parseInt(st.nextToken());
int end = Integer.parseInt(st.nextToken());
long sum = total[end] - total[start-1];
sb.append(sum).append("\n");
}
System.out.println(sb.toString());
}
}
아이디어
- 1~n번째까지의 합을 total[n]에 담았다.
- 이러한 방식으로 총합을 구하는 것을
Prefix Sum
알고리즘이라고 한다.
Author And Source
이 문제에 관하여([BOJ] 11659 구간 합 구하기 4), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@ssoyeong/BOJ-11659-구간-합-구하기-4저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)