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
- 탄막
- 알고리즘
- mysqld.sock
- 회의실 배정
- 2020 KAKAO BLIND RECRUITMENT
- MySQL
- 문자열 압축
- c#
- AI Hub
- 원형
- 영상 프레임 추출
- 윈도우
- SWEA
- 탄막 이동
- 강의실2
- 그리디알고리즘
- 수 만들기
- 탄막 스킬 범위
- 걷는건귀찮아
- 토글 그룹
- 18249
- 자료구조 목차
- 백준
- 유니티
- 우분투
- 알고리즘 목차
- 3273
- 단어 수학
- 마우스 따라다니기
- 3344
Archives
- Today
- Total
와이유스토리
[문자열] 프로그래머스 신고 결과 받기 Python 본문
https://programmers.co.kr/learn/courses/30/lessons/92334
def solution(id_list, report, k):
answer = []
black_list = [] # 금지 아이디 목록
stop = {} # 아이디별 신고 횟수
cnt = {} # 아이디별 신고한 아이디들
for id in id_list:
stop[id] = 0;
cnt[id] = []
for r in report:
temp = r.split(' ')
if temp[1] not in cnt[temp[0]]:
cnt[temp[0]].append(temp[1])
stop[temp[1]] += 1;
if stop[temp[1]] >= k:
if temp[1] not in black_list:
black_list.append(temp[1])
for id in id_list:
temp = 0
for b in black_list:
if b in cnt[id]:
temp += 1
answer.append(temp)
return answer
※ 다른 사람들 풀이 참고 후 수정 코드
def solution(id_list, report, k):
answer = [0] * len(id_list) # 배열 길이 사용
stop = {x : 0 for x in id_list} # 초기화
for r in set(report): # 중복 제거 조심
stop[r.split()[1]] += 1;
for r in set(report):
if stop[r.split()[1]] >= k:
answer[id_list.index(r.split()[0])] += 1 # 값으로 인덱스 접근
return answer
'코딩테스트 > 문자열' 카테고리의 다른 글
[문자열 변환] 프로그래머스 [3차] 방금그곡 Python (0) | 2022.02.04 |
---|---|
[문자열 뒤집기] 프로그래머스 [1차] 비밀 지도 C++ (0) | 2022.02.04 |
[문자열] 프로그래머스 숫자 문자열과 영단어 Python (0) | 2021.12.29 |
[문자열] 프로그래머스 신규 아이디 추천 C++, Python (0) | 2021.12.29 |
[문자열 처리] (3) 문자열 검색 - 프로그래머스 2020 KAKAO BLIND RECRUITMENT > 가사 검색(트라이 알고리즘) (0) | 2021.05.30 |
Comments