반응형
250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- ssafy 7기
- 코딩교육
- SSAFYcial
- 삼성 청년 SW 아카데미
- SSAFY
- 프로그래머스 고득점 kit
- bfs
- DenseNet
- SSAFY 8기
- 싸피 7기 입학식
- 삼성청년sw아카데미
- ssafy 7기 교수님
- 전이학습
- SSAFY 입학식
- ssafy 7기 합격
- 백준
- pytorch
- 웹 표준 사이트 만들기
- 백준7576 bfs
- DP
- 코딩 교육
- 프로그래머스
- SWEA
- dfs
- 유니온 파인드
- 알고리즘
- Learning
- React
- git
- 이코테
Archives
- Today
- Total
개미의 개열시미 프로그래밍
[알고리즘] 백준2252 줄 세우기 - 파이썬 본문
728x90
반응형
https://www.acmicpc.net/problem/2252
[풀이 코드]
from sys import stdin
from collections import deque
input = stdin.readline
n, m = map(int, input().split())
indegree = [0] * (n+1)
graph = [[] for i in range(n+1)]
for _ in range(m):
a, b = map(int, input().split())
graph[a].append(b)
indegree[b] += 1
def solution():
result = []
q = deque()
for i in range(1, n+1):
if indegree[i] == 0:
q.append(i)
while q:
now = q.popleft()
result.append(now)
for i in graph[now]:
indegree[i] -= 1
if indegree[i] == 0:
q.append(i)
for i in result:
print(i, end=' ')
solution()
- 위상 정렬은 큐를 이용하여 풀 수 있다. 이 문제에서 이상했던 점은 예제 입력 2의 출력 값이 '3 4 1 2'인데 정답처리가 된 것?? 아무래도 오타인 것 같다.. (???)
728x90
반응형
'알고리즘 > 유니온 파인드, 최소 신장 트리(크루스칼)' 카테고리의 다른 글
[프로그래머스] LEVEL3 네트워크 (유니온파인드 풀이) - 파이썬 (1) | 2021.12.12 |
---|---|
[알고리즘] 백준1197 최소 스패닝 트리 - 파이썬 (0) | 2021.09.13 |
[알고리즘] 백준20040 사이클 게임 - 파이썬 (0) | 2021.09.10 |
[알고리즘] 백준4195 친구 네트워크 - 파이썬 (0) | 2021.09.09 |
[알고리즘] 백준1976 여행가자 - 파이썬 (3) | 2021.09.08 |
Comments