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
- 실습
- UActor
- Unreal
- 셰그먼트트리
- 2단계로킹
- 트랜잭션 관리
- C++
- 백준 1253번
- SQL
- command not found
- 언리얼 플러그인
- Linux
- 민겸수
- 비재귀셰그먼트
- hackerank
- 데이터베이스 배움터
- objtofbx
- 1759번
- 1253번
- 언리얼 커스텀 플러그인
- Security
- FBX
- oracle
- 5639
- OS
- 오손데이터읽기
- 의미와 무의미의 경계에서
- UnrealMP
- 백준
- 1967번
Archives
- Today
- Total
fatalite
구간 합 구하기 - 2042번 백준 본문
문제
문제 난이도 : 골드 1
문제 분류: 셰그먼트 트리
문제 리뷰
- 코드 자체는 알고리즘 코딩 테스트 DO IT 편을 참조하였다.
- 재귀 셰그먼트 참고 해서 구현 했다가, 안되어서 비재귀 셰그먼트 트리로 구현하였는데 이게 더 나은 것 같다는 생각이..
- 재귀 셰그먼트 안되었던게 로직이 이상한게 아니었고, "\n"을 안해줘서 틀렸다고 뜬 거였다..
문제 소스 코드
#include <iostream>
#include <vector>
#include <string>
#include <cmath>
#include <algorithm>
#include <queue>
#include <unordered_set>
#include <memory.h>
using namespace std;
int N,M,K;
static vector<long> Tree;
void Init()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
std::cout.tie(NULL);
}
void SetTree(int i) {
while (i != 1) {
Tree[i / 2] += Tree[i];
i--;
}
}
void Change(int idx, long ToChange) {
long diff = ToChange - Tree[idx];
while (idx > 0) {
Tree[idx] = Tree[idx] + diff;
idx /= 2;
}
}
long GetSum(int s, int e) {
long Sum = 0;
while (s <= e) {
if (s % 2 == 1) {
Sum += Tree[s];
s++;
}
if (e % 2 == 0) {
Sum += Tree[e];
e--;
}
s /= 2;
e /= 2;
}
return Sum;
}
int main()
{
Init();
cin >> N >> M >> K;
int TreeHeight = 0;
int Length = N;
while (Length != 0) {
Length /= 2;
TreeHeight++;
}
int TreeSize = int(pow(2, TreeHeight + 1));
int LeafNodeStartIdx = TreeSize / 2 + 1;
Tree.resize(TreeSize+1);
for (int i = LeafNodeStartIdx + 1; i <= LeafNodeStartIdx + N; i++) {
cin >> Tree[i];
}
SetTree(TreeSize - 1);
for (int i = 0; i < M + K; i++) {
int a, b;
long c;
cin >> a >> b >> c;
if (a == 1) {
Change(b + LeafNodeStartIdx, c);
}
else {
cout << GetSum(b + LeafNodeStartIdx, c + LeafNodeStartIdx) << "\n";
}
}
}
'코딩 인터뷰 > C++' 카테고리의 다른 글
프로그래머스 - 괄호 변환 (0) | 2024.09.29 |
---|---|
프로그래머스 C++ 삼각 달팽이 (0) | 2024.09.28 |
🏳 겹치는 건 싫어 - 20922번 백준 (2) | 2023.09.16 |
섬의 개수 - 4963번 백준 (0) | 2023.09.16 |
점프 점프 - 11060번 백준 (0) | 2023.09.14 |