일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 수학
- 프로그래머스
- 이분탐색
- Re
- 백준
- 다익스트라
- 정렬
- backjoon
- Zip
- 재귀함수
- BFS
- lambda
- 추석맞이 코딩챌린지
- DateTime
- 위클리 챌린지
- java
- 그리디
- 자바
- 카카오
- 동적 계획법
- Combinations
- divmod
- 정규식
- KAKAO BLIND RECRUITMENT
- Set
- dfs
- 파이썬
- programmers
- heapq
- python
Archives
- Today
- Total
상상쓰
[백준] 결혼식 본문
https://www.acmicpc.net/problem/5567
dictionary 를 이용하여 친구 관계를 나타내고 1 과 dic[1] (1 의 친구들) 의 친구들을 friends 집합에 담아서 중복을 없앤다.
friends 에 원소가 있는 경우 1 이 존재하므로 len(friens) - 1 을 반환해주고 그렇지 않으면, 0 을 반환해준다.
import sys
from collections import defaultdict
n = int(sys.stdin.readline())
m = int(sys.stdin.readline())
dic = defaultdict(list)
friends = set()
for i in range(m):
a, b = map(int, sys.stdin.readline().split())
dic[a].append(b)
dic[b].append(a)
friends.update(dic[1])
for i in dic[1]:
friends.update(dic[i])
print(len(friends) - 1 if friends else 0)
'Coding Test' 카테고리의 다른 글
[프로그래머스] 멀리 뛰기 (0) | 2021.08.09 |
---|---|
[백준] LCS (0) | 2021.08.07 |
[프로그래머스] 1주차_부족한 금액 계산하기 (0) | 2021.08.04 |
[백준] 오늘 날짜 (0) | 2021.08.03 |
[백준] 덩치 (0) | 2021.08.02 |
Comments