250x250
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
- 코테 준비
- the midnight library
- 코테
- dfs
- 원서
- nightroutine
- 코테 대비
- 직무면접
- D4
- sw expert
- swexpertacademy
- 완전탐색
- English
- 삼성
- 알고리즘
- 알고리즘 문제
- MySQL
- 백준
- 원서읽기
- STUDYENGLISH
- SQL
- PyQt
- sw expert academy
- 쉬운 알고리즘 문제
- 프로그래머스
- 코딩테스트
- 원서읽자
- englishbook
- BFS
- readingbook
Archives
- Today
- Total
목록83 (1)
시나브로
19238. 스타트 택시
8% , 82% 에서 두번 막히고 적는 확인할 점들 1. 사람이 서있는 곳도 택시는 지날 수 있다. [ 손님을 택시에 태워서 도착지로 가능 경우,] 2. 동일한 거리가 있을 경우, 행/렬 크기로 우선순위 설정 3. 도착지가 다른 사람의 출발지가 될 수 있다. => 출발지가 적혀있는 배열에 도착지를 표시할 경우, 데이터가 사라질 수 있다. 4. 도착지로 갈 수 없는 경우가 있다. #include #include #include #include #include using namespace std; typedef struct value { int i; int j; long long f; }; typedef struct person { int si; int sj; int ei; int ej; }; value t..
알고리즘/백준
2020. 10. 17. 13:43