일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- RabbitMQ
- rust
- Algorithm
- 이더리움
- Python
- 백준
- Ethereum
- 러스트
- function
- 동시성
- 전문가를 위한 파이썬
- IMAGE
- 알고리즘
- guru
- Refactoring
- docker
- Thread
- Network
- AWS
- 플랫폼
- 파이썬
- fluent python
- Container
- Fast API
- dockerfile
- 코어 이더리움 프로그래밍
- BlockChain
- 블록체인
- BAEKJOON
- Kubernetes
Archives
- Today
- Total
글쓰기 | 방명록 | 관리 |
Victoree's Blog
15686_치킨배달 본문
728x90
Concept & Idea
dfs를 이용해서 치킨집을 갯수만큼 정해주고, 만약 m과 치킨집의 수가 맞으면 각 좌표값을 이용하여 집집마다의 치킨 거리를 계산할 수 있는 문제였다.
Code
#include <iostream>
#include <queue>
#include <vector>
#include <cmath>
#include <algorithm>
using namespace std;
int n,m;
vector<pair<int, int>> chicken, house;
long mins=9999999999;
void dfs(int x, vector<pair<int, int>> v){
if(v.size()==m) {
int nu=0;
for(int i=0; i<house.size(); i++) {
int distance = 101;
for(int j=0; j<v.size(); j++) {
if(abs(house[i].first-v[j].first)+abs(house[i].second-v[j].second)<distance)
distance=abs(house[i].first-v[j].first)+abs(house[i].second-v[j].second);
}
nu+=distance;
}
if(nu<mins)
mins=nu;
} else {
for(int j=x+1; j<chicken.size(); j++) {
v.push_back(chicken[j]);
dfs(j, v);
v.pop_back();
}
}
}
int main() {
cin>>n>>m;
for(int i=1; i<=n; i++) {
for(int j=1; j<=n; j++) {
int t;
cin>>t;
if(t==2) {
chicken.push_back({i,j});
}
if(t==1) {
house.push_back({i,j});
}
}
}
vector<pair<int, int>> ve;
ve.push_back(chicken[0]);
dfs(0,ve);
ve.pop_back();
dfs(0,ve);
cout<<mins<<endl;
}
Fealing
:)
728x90
'Algorithm > 2019~2020' 카테고리의 다른 글
2580_스도쿠 (0) | 2021.04.23 |
---|---|
14889_스타트와 링크 (0) | 2021.04.23 |
1238_파티 (0) | 2021.04.23 |
1916_최소비용 구하기 (0) | 2021.04.23 |
1937_욕심쟁이 판다 (0) | 2021.04.23 |
Comments