[20251124] BOJ / P3 / XOR 자료구조 / 권혁준 #1499
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
🧷 문제 링크
https://www.acmicpc.net/problem/20919
🧭 풀이 시간
60분
👀 체감 난이도
✏️ 문제 설명
연산 종류는 다음과 같다.
🔍 풀이 방법
집합$S$ 를
set으로 관리하고, 이진수를 저장하는트라이도 구성한다.1,2번째 연산은 트라이에서 부분 최적해만 쫓아 가면 해결 가능$S$ 와 트라이에 같이 넣기$S$ 에서 값을 찾고 트라이에서도 지워주기
3번째 연산에서는
4,5번째 연산은
⏳ 회고
트라이에서 삭제 구현하는 게 까다로웠음. 포인터가 너무 어렵다