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 |
Tags
- Til
- 항해플러스
- print("""
- 주니어개발자역량강화
- 파이썬 |
- 항해
- Fatal Python error: init_fs_encoding: failed to get the Python codec of the filesystem encoding
- 개발자스터디
- 99클럽
- 99일지
- fatal:not a git repository
- 코딩부트캠프후기
- 파이썬 sep
- cp949
- 99클럽 #99일지 #코딩테스트 #개발자스터디 #항해 #til
- EnvCommandError
- not a git repository
- 주니어개발자멘토링
- 항해99
- 파이썬 map 함수
- 파이썬 int()
- print sep
- 개발자사이드프로젝트
- 코딩테스트
- 파이썬 클래스
- vscode cp949
- 10430번
- MomentumParameters
- 백준
- 파이썬
Archives
- Today
- Total
선발대
[스파르타] 99클럽 코테스터디 4일차 TIL / 백준 15686 본문
15686번: 치킨 배달 (링크)
백트래킹 문제지만 다른 블로그 풀이를 참고해서 파이썬 combination으로 풀었다.
파이썬 조합 라이브러리 사용법을 좀 더 알아둬야겠다.
(1) 데이터 입력받기
(2) 전체 그래프를 돌면서 1(집), 2(치킨집)의 좌표를 찾음
(3) combination을 이용해서 집 ~ 치킨집 사이의 최소 거리를 찾음
from itertools import combinations
import sys
# 1. 데이터 입력 받기
n, m = map(int, sys.stdin.readline().split())
graph = []
chicken = []
city = []
for _ in range(n):
graph.append(list(map(int, sys.stdin.readline().split())))
# 2. graph에서 1, 2가 있는 좌표 찾기
for i in range(n):
for j in range(n):
if graph[i][j] == 1:
city.append([i, j])
elif graph[i][j] == 2:
chicken.append([i, j])
# 3. combination을 이용하여 치킨집의 모든 경우의 수를 구한 뒤, 최소거리 비교하기
result = 99999
for i in combinations(chicken, m):
temp = 0 # 도시 치킨 최소 거리
for house in city:
chicken_dist = 999
for j in range(m):
chicken_dist = min(chicken_dist, abs(house[0]-i[j][0]) + abs(house[1]-i[j][1]))
temp += chicken_dist
result = min(result, temp)
print(result)
참고한 블로그: https://codesyun.tistory.com/185
'스파르타코딩클럽 > 활동 내용' 카테고리의 다른 글
[스파르타] 99클럽 코테스터디 6일차 TIL / 백준 28324 (0) | 2024.05.08 |
---|---|
[스파르타] 99클럽 코테스터디 5일차 TIL / 숫자 변환하기 (1) | 2024.05.07 |
[스파르타] 99클럽 코테스터디 3일차 TIL / 백준 2010 (0) | 2024.05.05 |
[스파르타] 99클럽 코테스터디 2일차 TIL / 백준 1309 (0) | 2024.05.04 |
[스파르타] 99클럽 코테스터디 1일차 TIL / 백준 15700 (0) | 2024.05.03 |
Comments