일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- A Neural Attention Model for Abstractive Sentence Summarization
- Exploring the Limits of Transfer Learning with a Unified Text-to-Text Transformer 리뷰
- TOD 논문리뷰
- 다양한 모듈에서 log쓰기
- BERT란
- 뉴텝스 400
- 정책기반 agent
- Attention Is All You Need
- 바닥부터 배우는 강화 학습
- attention 설명
- BART 논문리뷰
- Evaluate Multiwoz
- The Natural Language Decathlon:Multitask Learning as Question Answering
- UBAR: Towards Fully End-to-End Task-Oriented Dialog System with GPT-2
- T5 논문 리뷰
- hugging face tokenizer에서 special case 추가하기
- MMTOD
- CNN 논문리뷰
- Multi Task Learning Objectives for Natural Language Processing 리뷰
- Multi Task Learning Objectives for Natural Language Processing
- BERT 사용방법
- Attention Is All You Need 리뷰
- RuntimeError: DataLoader worker (pid(s) ) exited unexpectedly
- BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding 리뷰
- Zero-shot Generalization in Dialog State Tracking through GenerativeQuestion Answering
- Exploring the Limits of Transfer Learning with a Unified Text-to-Text Transformer
- ImageNet Classification with Deep ConvolutionalNeural Networks 리뷰
- 길찾기
- NLP 논문 리뷰
- BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding 논문리뷰
Archives
- Today
- Total
one by one ◼◻◼◻
베스트 앨범(코딩테스트 연습-해시) 본문
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
|
from collections import defaultdict
def solution(genres, plays):
answer = []
genres_count = defaultdict(int)
genres_song = defaultdict(list)
for i, (g,p) in enumerate(zip(genres, plays)):
genres_count[g] += p
genres_song[g].append([p,i])
G = len(genres_count)
for _ in range(G):
count_nums = list(genres_count.values())
genre_names = list(genres_count.keys())
max_num = max(count_nums)
max_genre_name = genre_names[count_nums.index(max_num)]
print(max_genre_name)
del genres_count[max_genre_name]
songs = genres_song[max_genre_name]
if len(songs) == 1:
answer.append(songs[0][1])
else:
songs =sorted(songs, key = lambda song:-song[0])
answer.append(songs[0][1])
answer.append(songs[1][1])
return answer
|
cs |
'코딩문제' 카테고리의 다른 글
백준 1009, 분산처리 (0) | 2022.06.16 |
---|---|
정수 삼각형 (코딩테스트 연습동적계획법(Dynamic Programming)) (0) | 2022.06.10 |
위장 (프로그래머스 코딩테스트 연습-해시) (0) | 2022.06.10 |
숫자 문자열과 영단어 (2021 카카오 채용연계형 인턴십) (0) | 2022.06.08 |
로또의 최고 순위와 최저 순위 (2021 Dev-Matching: 웹 백엔드 개발자(상반기) (0) | 2022.06.06 |
Comments