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 | 31 |
Tags
- AI Hub
- 자료구조 목차
- 탄막 스킬 범위
- 백준
- SWEA
- 18249
- 마우스 따라다니기
- 수 만들기
- 단어 수학
- 문자열 압축
- 걷는건귀찮아
- 3344
- 토글 그룹
- 회의실 배정
- 3273
- mysqld.sock
- 알고리즘 목차
- 2020 KAKAO BLIND RECRUITMENT
- 그리디알고리즘
- 탄막 이동
- 알고리즘
- 탄막
- 유니티
- MySQL
- 윈도우
- 강의실2
- c#
- 우분투
- 원형
- 영상 프레임 추출
Archives
- Today
- Total
와이유스토리
[문자열, 이진탐색] 프로그래머스 순위 검색 Python 본문
https://programmers.co.kr/learn/courses/30/lessons/72412
※ 정확성(O), 효율성(O) 풀이
이진탐색 이용
from itertools import combinations
from collections import defaultdict # 키 존재 여부 확인X
def binarySearch(dic, target): # Lower Bound(점수 몇 점 이상)
ans = 0
s = m = 0
e = len(dic)-1
while s <= e:
m = int((s+e)/2) # int 함수 조심
if dic[m] >= target:
ans = max(ans, m+1) # 최댓값 저장
s = m + 1
else:
e = m - 1
return ans
def solution(info, query):
answer = []
dic = defaultdict(list)
for i in info:
tempI = i.split(" ")
for cnt in range(5):
for l in list(combinations(tempI[:-1],cnt)):
dic["".join(l)].append(int(tempI[4])) # 문자열 키
for v in dic.values():
v.sort(reverse = True) # 내림차순(정렬X 시간초과)
for q in query:
tempQ = q.replace(" and ", " ").replace("-","").split(" ")
tempL = dic["".join(tempQ[:-1])]
answer.append(binarySearch(tempL, int(tempQ[4])))
return answer
※ 정확성(O), 효율성(X) 코드
50,000 X 100,000 = 5,000,000,000(50억) 연산 횟수
def solution(info, query):
answer = []
for q in query:
cnt = 0
for i in info:
tempI = i.split(" ")
tempQ = q.replace(" and ", " ").split(" ")
for idx in range(4):
if tempQ[idx] == '-':
tempQ[idx] = tempI[idx]
if tempI[0:4] == tempQ[0:4]:
if int(tempI[4]) >= int(tempQ[4]):
cnt += 1 # answer[query.index(q)] += 1 # 쿼리 겹칠수 있음(unique X)
answer.append(cnt)
return answer
'코딩테스트 > 문자열' 카테고리의 다른 글
[문자열] 프로그래머스 시저 암호 Java (0) | 2022.12.16 |
---|---|
[문자열] 프로그래머스 후보키 Python (0) | 2022.03.03 |
[딕셔너리] 프로그래머스 오픈채팅방 Python (0) | 2022.02.04 |
[문자열] 프로그래머스 [1차] 뉴스 클러스터링 Python (0) | 2022.02.04 |
[문자열] 프로그래머스 [3차] n진수 게임 C++ (0) | 2022.02.04 |
Comments