티스토리 뷰
728x90
반응형
문제 요약
- 알고리즘 분류: 수학
- 난이도: Medium
- 문제내용:
- pref이라는 리스트가 주어진다.
- pref[i] = arr[0] ^ arr[1] ^ arr[2] ...... ^ arr[i] 식처러 arr 0번째 인덱스 부터 i번째 xor연산된 값이다.
- xor 연산되기 전의 arr를 구하여라
- 사이트 주소: https://leetcode.com/problems/find-the-original-array-of-prefix-xor/description/
문제풀이
이번 문제는 xor의 법칙만 알면 쉽게 풀수 있는 문제이다.
위 내용 보면 pref[i] = arr[0] ^ arr[1] ^ arr[2] ...... ^ arr[i]으로 되어 있으면 pref[0] = arr[0]으로 0번째 인덱스는 그대로 넣으면 된다. 그럼 첫번째 인덱스는 pref[1] = arr[0] ^ arr[1] 여기서 부터 보면 된다. xor법칙중 아래와 같은 법칙이 적용이 된다.
X ^ Y = Z → X ^ Z = Y
위와 같은 식이 되기 때문에 pref[1] = arr[0] ^ arr[1] → arr[1] = arr[0] ^ pref[1]이 된다.
그럼 arr[i] = pref [0] ^ pref [1] ^ pref [2] ...... ^ pref[i] 라는 식을 세울수 있기 때문에 i번째는 연산후 누적시키면 된다. 만약 i번째에서 이전것 연산후 pref[i]하면 시간 초과가 나와서 누적변수에 담아서 처리해야한다.
위와 같은 내용으로 구현하면 시간 복잡도는 O(N)이 나올것이다.
Code
Python
class Solution:
def findArray(self, pref: list[int]) -> list[int]:
size = len(pref)
result = [0 for _ in range(size)]
result[0] = pref[0]
value = result[0] # 누적한 값을 저장 할 변수
for i in range(1, size):
result[i] = value ^ pref[i]
value ^= result[i] # 누적
return result
Java
class Solution {
public int[] findArray(int[] pref) {
int size = pref.length;
int[] result = new int[size];
result[0] = pref[0];
int value = result[0]; // 누적한 값을 저장 할 변수
for (int i = 1; i < size; i++) {
result[i] = value ^ pref[i];
value ^= result[i]; // 누적
}
return result;
}
}
728x90
반응형
'알고리즘 > Leetcode' 카테고리의 다른 글
[Leetcode]1282. Group the People Given the Group Size They Belong To (0) | 2024.06.07 |
---|---|
[Leetcode]2396. Strictly Palindromic Number (0) | 2024.05.21 |
[Leetcode] 221. Maximal Square (0) | 2024.05.13 |
[Leetcode] 1302. Deepest Leaves Sum (1) | 2024.04.19 |
[Leetcode] 386. Lexicographical Numbers (0) | 2024.04.18 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 이론
- 재귀호출
- 배열
- 조합
- spring-boot
- LeetCode
- 자바
- Python
- 누적합
- Greedy
- java
- 동적계획법
- level2
- 넓이 우선 탐색
- 백준
- 알고리즘
- 문자열
- BaekJoon
- 백트레킹
- DP
- Programmerse
- 구현
- 그래프
- BFS
- 그리디
- DFS
- 파이썬
- 수학
- 동적 계획법
- JSCODE
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
글 보관함