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 | 31 |
Tags
- IntelliJ
- broadcastreceiver
- Algorithm
- 데이터
- ubuntu
- Android
- activity
- github
- insert
- 안드로이드
- Java
- 단축키
- Jenknis
- 알고리즘
- spring
- 데이터전달
- git
- goland
- 프로그래머스
- 백준
- 17837
- data
- intent
- 제어반전
- 16197
- mysql
- service
- 두 동전
- 큐빙
- vscode
Archives
- Today
- Total
목록15686 (1)
해보자
백준_15686번_치킨 배달
소스코드 #include #include #include #include using namespace std; vector house; vector chicken; int result = INT_MAX; int N, M; int calcDistance(vector t_chicken) { int total = 0; for (int i = 0; i < house.size(); i++) { int distance = INT_MAX; for (int j = 0; j < t_chicken.size(); j++) { distance = min(distance, abs(t_chicken[j].first - house[i].first) + abs(t_chicken[j].second - house[i].second));..
C++/Solve & Think
2020. 10. 8. 01:25