목록BOJ (1)
YM 개발 본부
[Python] BOJ 19238 - 스타트 택시
# 백준19238 : 스타트 택시 import sys; input = sys.stdin.readline from typing import List, Tuple from collections import deque def joyGo(N: int, M: int, fuel: int, graph: List[List[int]], start_x: int, start_y: int, driving_list: List[List[int]]) -> int: def find_next_guy(_start_x: int, _start_y: int) -> Tuple[int, int, int]: ''' BFS를 사용해 가장 가까이 있는 다음 손님을 찾습니다. Parameters: _start_x (int): 출발지의 x 좌표 _sta..
PS/BOJ
2024. 1. 14. 09:00