일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 다익스트라
- 재귀함수
- BFS
- heapq
- lambda
- python
- DateTime
- dfs
- 파이썬
- 자바
- 정렬
- Combinations
- divmod
- 이분탐색
- java
- 카카오
- programmers
- 그리디
- Zip
- 위클리 챌린지
- 백준
- KAKAO BLIND RECRUITMENT
- backjoon
- 수학
- 프로그래머스
- 정규식
- Re
- 추석맞이 코딩챌린지
- 동적 계획법
- Set
Archives
- Today
- Total
상상쓰
[프로그래머스] 10주차_교점에 별 만들기 본문
https://programmers.co.kr/learn/courses/30/lessons/87377
문제에 참고 사항에 친절하게 해를 구하는 공식이 나타나 있다. 이를 활용하여 해가 정수인 부분에 대해서 result 배열에 넣어주고 가로, 세로 최대 크기를 구하여 구한 좌표에 맞게 result 의 원소(교점)를 평행 이동하여 '.' 을 '*' 로 만들어 준다.
배열로 나타낼 때 y 의 값은 x 와 달리 배열과 부호가 반대이므로 해를 구할 때 미리 -1 을 곱한 값으로 나타냈다.
def solution(line):
answer = []
result = []
for i in range(len(line)-1):
for j in range(i+1, len(line)):
s = solve(line[i], line[j])
if s != None:
r1 = min(r1, s[1]) if len(result) != 0 else s[1]
r2 = max(r2, s[1]) if len(result) != 0 else s[1]
c1 = min(c1, s[0]) if len(result) != 0 else s[0]
c2 = max(c2, s[0]) if len(result) != 0 else s[0]
result.append(s)
answer = [['.'] * (c2 - c1 + 1) for i in range(r2 - r1 + 1)]
for x, y in result:
answer[y - r1][x - c1] = '*'
for i in range(len(answer)):
answer[i] = ''.join(answer[i])
return answer
def solve(eq1, eq2):
A, B, E = eq1
C, D, F = eq2
if A * D - B * C != 0 and (B * F - E * D) % (A * D - B * C) == 0 and (E * C - A * F) % (A * D - B * C) == 0:
return [(B * F - E * D) // (A * D - B * C), - (E * C - A * F) // (A * D - B * C)]
else:
return None
print(solution([[2, -1, 4], [-2, -1, 4], [0, -1, 1], [5, -8, -12], [5, 8, 12]])) # ['....*....', '.........', '.........', '*.......*', '.........', '.........', '.........', '.........', '*.......*']
'Coding Test' 카테고리의 다른 글
[프로그래머스] n^2 배열 자르기 (0) | 2021.10.14 |
---|---|
[백준] ACM 호텔 (0) | 2021.10.13 |
[백준] 막대기 (0) | 2021.10.10 |
[백준] K번째 수 (0) | 2021.10.09 |
[백준] 피보나치 함수 (0) | 2021.10.08 |
Comments