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
- c3 축 가리기
- influxdb 설치
- CentOS7
- python os
- gcc regex
- centos pyhon 설치
- c3 축 없애기
- c3 초
- 1697
- python subprocess
- python popen
- 백준
- g++ 업데이트
- gcc 업데이트
- semanage
- c++ 정규식
- grafana dashboard
- InfluxDB
- 정규식 컴파일
- telegraf
- snmp test
- 정규식 활용
- 정규식 문자열 출력
- subporcess path
- c3 second
- selinux port 등록
- snmp
- c3 step graph
- linux시간으로 변경
- regex_search
Archives
- Today
- Total
리셋 되지 말자
[백준 10816] 숫자 카드 2 - 자료구조, 정렬(?), 이분탐색(?) 본문
코드
from collections import Counter
def solution(arr):
# Counter dict : Counter({10: 3, 3: 2, -10: 2, 6: 1, 2: 1, 7: 1})
cd = Counter(arr)
input()
# input : 10 9 -5 2 3 4 5 -10
keys = list(map(int, input().split()))
# output : 3 0 0 1 2 0 0 2
for key in keys:
print(cd[key], end=' ')
input()
# input : 6 3 2 10 10 10 -10 -10 7 3
arr = list(map(int, input().split()))
solution(arr)
Counter는 배열에서 각 원소가 몇번 쓰였는지 count 하여 원소를 key로 하는 dict 형태로 반환함
'알고리즘' 카테고리의 다른 글
[백준 4949] 균형잡힌 세상 - 스택 (0) | 2022.01.18 |
---|---|
[백준 1080] 체스판 다시 칠하기 - 브루트포스 (0) | 2022.01.18 |
[백준 2805] 나무 자르기 - 이분 탐색 (0) | 2022.01.13 |
[백준 7568] 덩치 - 브루트포스 (0) | 2022.01.10 |
[백준 2108] 통계학 - 구현, 정렬 (0) | 2022.01.03 |
Comments