티스토리 뷰
문제출처 - https://www.acmicpc.net/problem/1074
틀린 풀이
n, r, c = map(int, input().split())
location = 0 # 몇사분면에 있는지
answer = 0
while n >= 1:
temp = 2 ** (n - 1)
if r < temp <= c:
location = 2
elif c < temp <= r:
location = 3
elif temp <= r and temp <= c:
location = 4
if n == 1:
break
answer += (location - 1) * (2 ** temp)
if r > 1:
r //= 2
if c > 1:
c //= 2
n -= 1
if location is 2:
answer += 1
elif location is 3:
answer += 2
elif location is 4:
answer += 3
print(answer)
while문을 돌면서 해당 좌표가 몇사분면에 있는지 찾고 범위를 계속 줄여나감
근데 왜틀렸는지 모르겠음..
성공한 풀이
n, r, c = map(int, input().split())
answer = 0
while n >= 1:
temp = 2 ** (n - 1)
if n == 1:
if r is 0 and c is 1: # 2사분면
answer += 1
elif r is 1 and c is 0: # 3사분면
answer += 2
elif r is 1 and c is 1: # 4사분면
answer += 3
break
if r < temp <= c: # 2사분면
answer += temp ** 2
c -= temp
elif c < temp <= r: # 3사분면
answer += (temp ** 2) * 2
r -= temp
elif temp <= r and temp <= c: # 4사분면
answer += (temp ** 2) * 3
r -= temp
c -= temp
n -= 1
print(answer)
이것도 마찬가지로 해당 좌표가 몇사분면에 있는지 찾고 범위를 계속 줄여나감
예를 들어, 좌표가 3사분면에 있다면 1,2사분면은 지나온거니까 그 갯수만큼 더해줌 -> 좌표가 1사분면에 있으면 지나온게 없으니까 더해줄 필요 X
범위를 줄여나갈때마다 좌표값을 temp만큼 빼줘야함
$ 주의해야 할 것 - 번호는 0부터 시작!! $
'ALGORITHM > 백준' 카테고리의 다른 글
[Python][BFS] 백준 - 미로 탐색(2178번) (0) | 2020.04.22 |
---|---|
[Python]백준 - 카드(11652번) (0) | 2020.03.10 |
[Python]백준 - ABC(3047번) (0) | 2020.03.10 |
[Python]백준 - 국영수(10825번) (0) | 2020.03.10 |
[Python]백준 - 그룹 단어 체커(1316번) (0) | 2020.03.09 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 우선순위큐
- 스택
- 완전탐색
- programmers
- left join
- 2020 KAKAO BLIND RECRUITMENT
- 딕셔너리
- dictionary
- 괄호
- combination
- 백준
- 재귀
- SWExpert
- 파이썬
- Permutation
- SW Expert
- 힙
- 정렬
- C++
- 코딩테스트
- BOJ
- 문자열처리
- 구현
- 프로그래머스
- Python
- 문자열
- 순열
- hash
- 해시
- 2019 Kakao Blind Recruitment
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함