-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargoDriver4.cpp
123 lines (102 loc) · 4.44 KB
/
CargoDriver4.cpp
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
#include <iostream>
#include <vector>
#include <string>
#include <algorithm> // 정렬
using namespace std;
/* 화물 정보를 저장할 구조체 */
struct Cargo {
string name; // 화물 이름
double weight; // 화물 무게
double distance; // 차고로부터의 거리
double reward; // 운송 시 수령하는 기본 보수
double rewardPerKg; // 수익/무게 비율
};
/* 화물차 정보를 저장할 구조체 */
struct Truck {
double maxLoad; // 최대 적재 무게
double costPerLiter; // 리터당 기름값
};
/* 화물의 수익/무게 비율 계산 함수 */
void calculateRewardPerKg(vector<Cargo>& cargos) {
for (auto& cargo : cargos) {
cargo.rewardPerKg = cargo.reward / cargo.weight; // 수익/무게 비율 계산
}
}
double efficiency = 9.0; // 연비 고정값
/* 동적 프로그래밍 방식으로 최적의 화물 조합을 계산하는 함수 */
void calBestCombDP(const vector<Cargo>& cargos, const Truck& truck, double& maxProfit, vector<Cargo>& bestCombination,
double& totalReward, double& fuelCost, double& totalDistance, double& totalWeight) {
int n = cargos.size();
vector<vector<double>> dp(n + 1, vector<double>(int(truck.maxLoad) + 1, 0.0)); // DP 테이블
// DP 테이블 채우기
for (int i = 1; i <= n; ++i) {
for (int w = 0; w <= int(truck.maxLoad); ++w) {
// 현재 화물을 선택하지 않은 경우
dp[i][w] = dp[i - 1][w];
// 현재 화물을 선택하는 경우
if (cargos[i - 1].weight <= w) {
double newReward = dp[i - 1][w - int(cargos[i - 1].weight)] + cargos[i - 1].reward;
dp[i][w] = max(dp[i][w], newReward);
}
}
}
// 최적의 수익을 구하기 위해 마지막 행을 확인
maxProfit = dp[n][int(truck.maxLoad)];
// 최적의 조합을 찾기 위한 추적
double w = truck.maxLoad;
for (int i = n; i > 0; --i) {
if (dp[i][int(w)] != dp[i - 1][int(w)]) { // 현재 화물이 선택된 경우
bestCombination.push_back(cargos[i - 1]);
w -= cargos[i - 1].weight;
}
}
// 선택된 화물들의 정보로 총 보수, 총 거리, 총 무게 계산
totalReward = 0.0;
totalDistance = 0.0;
totalWeight = 0.0;
for (const auto& cargo : bestCombination) {
totalReward += cargo.reward;
totalDistance += cargo.distance;
totalWeight += cargo.weight;
}
fuelCost = (totalDistance / efficiency) * truck.costPerLiter; // 연료 비용 계산
}
// 메인 함수
int main() {
// 1. 화물차 정보 입력
Truck truck;
cout << "현재 리터당 기름값을 입력하세요(L/원): ";
cin >> truck.costPerLiter;
cout << "화물차의 최대 적재 무게를 입력하세요(Kg): ";
cin >> truck.maxLoad;
// 2. 화물 정보 입력
vector<Cargo> cargos;
string name;
double weight, distance, reward;
cout << "화물의 이름, 무게(Kg), 거리(Km), 보수(원)를 입력하세요\n(예시 : 선풍기 10 100 50000) : ";
while (true) { // 무한 루프 사용
cin >> name;
if (name == "done") break; // "done" 입력 시 루프 종료
cin >> weight >> distance >> reward;
cargos.push_back(Cargo{ name, weight, distance, reward, 0.0 });
cout << "또 다른 화물이 있나요? (없다면 done을 입력): ";
}
// 3. 최적의 조합을 선택하는 알고리즘 수행
double maxProfit = 0.0, totalReward = 0.0, fuelCost = 0.0, totalDistance = 0.0, totalWeight = 0.0;
vector<Cargo> bestCombination;
calBestCombDP(cargos, truck, maxProfit, bestCombination, totalReward, fuelCost, totalDistance, totalWeight);
// 4. 결과 출력
cout << "\n최적의 화물 조합으로 최대 수익: " << maxProfit << "원\n";
cout << "선택된 화물 목록 (이름, 무게, 거리, 기본 보수):\n";
for (const auto& cargo : bestCombination) {
cout << "이름: " << cargo.name << ", 무게: " << cargo.weight << "kg, 거리: " << cargo.distance << "km, 기본 보수: "
<< cargo.reward << "원\n";
}
// 디버깅 정보 출력
cout << "\n[디버깅 정보]\n";
cout << "총 보수: " << totalReward << "원\n";
cout << "총 연료 비용: " << fuelCost << "원\n";
cout << "총 거리: " << totalDistance << "km\n";
cout << "총 적재 무게: " << totalWeight << "kg\n";
return 0;
}