일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- github
- 프로그래머스 월간 코드 챌린지
- 프로그래머스 코딩 테스트 연습
- 프로그래머스 코딩테스트 연습문제
- 디자인 패턴
- selenium
- FastAPI
- github actions
- heroku
- Codeforces
- 스프링 부트와 AWS로 혼자 구현하는 웹 서비스
- Python
- 애드센스
- 클린 코드
- 프로그래머스 월간 코드 챌린지 시즌1
- 브랜디
- 파이썬
- PostgreSQL 설치 시 에러
- 바이오데이터 엔지니어
- 프로그래머스 코딩테스트 연습
- pycharm
- 스코페2021
- Firefox
- Word Cloud
- terraform
- PostgreSQL
- c#
- git
- Spring Boot
- WPF
Archives
- Today
- Total
프로그래밍 연습하기
Space Navigation 본문
반응형
Codeforces Round #699 (Div. 2)
A. Space Navigation
https://codeforces.com/contest/1481/problem/A
문제 전문은 위 링크에서 확인하실 수 있습니다.
t = int(input())
for _ in range(t):
px, py = [int(i) for i in input().split()]
s = input()
orderDict = {"U": 0, "D": 0, "R": 0, "L": 0}
for i in s:
orderDict[i] += 1
if 0 <= px <= orderDict["R"] and 0 <= py <= orderDict["U"]:
print("YES")
elif 0 <= px <= orderDict["R"] and -1*orderDict["D"] <= py <= 0:
print("YES")
elif -1*orderDict["L"] <= px <= 0 and 0 <= py <= orderDict["U"]:
print("YES")
elif -1*orderDict["L"] <= px <= 0 and -1*orderDict["D"] <= py <= 0:
print("YES")
else:
print("NO")
넘치는 이동 횟수는 지울 수 있으니까
x,y 좌표가 각각 양수, 음수일때를 고려해서 좌표와 이동 횟수의 값 범위를 정해서
YES일 경우에 출력하고 나머지는 NO를 출력했습니다.
반응형
'Codeforces' 카테고리의 다른 글
New Colony (0) | 2021.02.09 |
---|---|
Suborrays (0) | 2021.02.04 |
Hotelier (0) | 2021.02.03 |
Wrong Subtraction (0) | 2021.02.03 |
Nezzar and Lucky Number (0) | 2021.01.31 |
Comments