๋ฌธ์ ํ์ด์ง
def solution(id_list, report, k):
count = dict()
reportCount = dict()
report = list(set(report)) # ๋์ผ ์ ๊ณ ์ ๋ํ ์ค๋ณต๊ฐ ์ฒ๋ฆฌ๋ฅผ ์ํด set ๋ณํ ํ list ๋ณํ
for id in id_list: # ๋์
๋๋ฆฌ ์ด๊ธฐํ
count[id] = 0
reportCount[id] = 0
for str in report : # report์ ์ ์ฅ๋ ๊ฐ๊ฐ์ ๋ฌธ์์ด ํ์ฑํด ์ ๊ณ ํ์ ๋์
src, trg = str.split(' ')
count[trg] += 1
for str in report : #
src, trg = str.split(' ')
if count[trg] >= k :
reportCount[src] += 1
return list(reportCount.values())
โถ ๋ฌธ์ ํ์ด
- ๊ทธ๋ฆฌ๋ํ๊ฒ ๋ฌธ์ ์ ๊ทผ
1. ์ฐ์ `count` ๋์
๋๋ฆฌ์ `reportCount` ๋์
๋๋ฆฌ๋ฅผ ์ ์ธ
2. ๊ฐ์ ์ ๊ณ ๋ด์ฉ(= ์ ๊ณ ์๋ ๊ฐ๊ณ ์ ๊ณ ๋นํ๋ ์ฌ๋๋ ๊ฐ์)์ ์ฌ๋ฌ๋ฒ ๋์๋ 1๋ฒ์ผ๋ก๋ง ์ทจ๊ธ => ์ธ์๋ก ๋ค์ด์จ `report`์์ ์ค๋ณต์ ์ ๊ฑฐํ๊ธฐ ์ํด `set` (์งํฉํํ => ์ค๋ณต์ด ์๋ค)์ผ๋ก ๋ณํ ํ ๋ค์ `list`๋ก ๋ณํ
3. for๋ฌธ์ ์ด์ฉํด dictionary๋ฅผ ์ด๊ธฐํ
- ์์ ์ด ์ ๊ณ ๋นํ ํ์ = `count` ๋์
๋๋ฆฌ์ ์ ์ฅ
- ๋์ ์ ์ฌ ๋์์ด ์์ ์๊ฒ ๋ช ๊ฐ๊ฐ ์ฌ์ง = `reportCount` ๋์
๋๋ฆฌ์ ์ ์ฅ
4. report์ ์ ์ฅ๋ ๊ฐ๊ฐ์ ๋ฌธ์์ด์ ํ์ฑํ ๋ค ์ ๊ณ ํ์ ๋์
5. ๋๊ตฐ๊ฐ์ ์ ๊ณ ํ์๊ฐ ์๊ณ๊ฐ `k`๋ฅผ ๋์ผ๋ฉด `reportCount` ๋์
๋๋ฆฌ์ ๋์
6. ๊ฒฐ๊ณผ ์ถ๋ ฅ
'๐ฏ CodingTest > Programmers' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[Programmers] ํคํจ๋ ๋๋ฅด๊ธฐ (0) | 2022.04.18 |
---|---|
[Programmers] ์ซ์ ๋ฌธ์์ด๊ณผ ์๋จ์ด (0) | 2022.04.11 |
[Programmers] ์ซ์ ๋ฌธ์์ด๊ณผ ์๋จ์ด (0) | 2022.04.09 |
[Programmers] ์ ๊ณ ๊ฒฐ๊ณผ ๋ฐ๊ธฐ (0) | 2022.04.09 |
[Programmers]์ ๊ท ์์ด๋ ์ถ์ฒ (0) | 2022.04.05 |