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 |
Tags
- 포스코 아카데미
- 혼공머신러닝딥러닝
- 데이터분석
- 추천시스템
- Brigthics Studio
- 삼성SDS Brightics
- Brigthics
- Brightics Studio
- Brigthics를 이용한 분석
- 모델링
- 혼공머신
- 혼공학습단
- 개인 의료비 예측
- 삼성 SDS
- 삼성 SDS Brigthics
- 브라이틱스 서포터즈
- 직원 이직여부
- 포스코 청년
- Brightics
- 직원 이직률
- 브라이틱스
- 노코드AI
- 삼성SDS
- 팀 분석
- Brightics를 이용한 분석
- 영상제작기
- 캐글
- 혼공
- 데이터 분석
- 삼성SDS Brigthics
Archives
- Today
- Total
데이터사이언스 기록기📚
[프로그래머스/Python] Level 3_최고의 집합(연습문제) 본문
📌문제 유형
연습문제
📌문제
📌나의 문제풀이
- 시간초과 , 10만이기 때문에 비효율적
from itertools import permutations
def solution(A, B):
answer = -1
combi = list(permutations(B,len(B)))
for c in combi:
ans = 0
for i in range(len(c)):
if A[i] < c[i]:
ans += 1
if ans > answer:
answer = ans
return answer
- A 내림차순, B rotate 하면서 비교
- 정확성 만점, 효율성 0
from collections import deque
import copy
def solution(A, B):
answer = 0
A.sort(reverse = True)
B.sort(reverse = True)
C = copy.deepcopy(B)
B = deque(B)
while True:
result = 0
for i in range(len(A)):
if A[i] < B[i]:
result += 1
if result > answer:
answer = result
B.rotate(1)
if list(B) == C:
break
return answer
- 정답
- B배열 내 제일 작은 원소, A 못이김 -> B삭제
from collections import deque
import copy
def solution(A, B):
answer = 0
A.sort()
B.sort()
A = deque(A)
B = deque(B)
while B:
if A[0] < B[0]:
A.popleft()
B.popleft()
answer += 1
else:
B.popleft()
return answer
📌리뷰
- 10만이기에 그냥 비교하면 못함 -> deque 생각하기
- 핵심 : B 배열의 가장 작은 원소, A 못이김 - A,B 오름차순 정렬 후 B가 작으면 B만 빼기
728x90
'Coding Test > 프로그래머스(Python)' 카테고리의 다른 글
[프로그래머스/Python] Level 3_스티커 모으기(2) (0) | 2024.02.09 |
---|---|
[프로그래머스/Python] Level 3_베스트앨범(해시) (0) | 2024.02.05 |
[프로그래머스/Python] Level 3_최고의 집합(연습문제) (0) | 2024.02.02 |
[프로그래머스/Python] Level 3_야근 지수(연습문제) (0) | 2024.02.01 |
[프로그래머스/Python] Level 3_단어 변환(DFS) (0) | 2023.11.16 |
Comments