2.3 问题3

在这一章节,我们将用到minizinc, 类似于一个编译器,但是它提供不同的solver帮助我们解决问题,我们只需要对问题中的限制(binary constraint network)进行描述(1.constant 2.variable 3.constraint),要求solver 为我们提供满足解或者最优解。

生活中我们会遇到很多资源分配问题,例如
在departure point, 有两种不同类型的车,一种只运常温货物,一种可以运常温和低温货物。每辆车都有各自的capacity
如今送货到很多家商店,每个商店都有对于货物的不同需求。
对于不同的问题条件,请给出不同的解决方案。

3.This part is as for Question 2, but this time we require a solution that minimises the total cost. This means you must take into account the distance each truck travels, and the cost running each particular truck to compute the total cost of the solution. Both the distances between each pair of customers or the depot (in Km), and the running cost of each truck (in cents per Km) are now given in the data files.

Answer:

int: C;                   % Number of customers
int: T;                               % Number of trucks
int: G;                               % Number of goods types 
int: MAXCAP;                          % Upper bound on truck capacity

set of int: trucks = 1..T;                % Set of trucks
set of int: customers = 0..C;             % Set of customers. Includes depot as customer 0
set of int: goods = 1..G;                 % Set of goods types
int: chilled = 1;  int: ambient = 2;      % Good types
set of int: times = 0..C+1;               % Enough times to visit each customer once and depot twice if needed

array[trucks] of int: cap;            % Capacity of trucks
array[trucks] of bool: refrig;            % Whether or not trucks are refrigerated
array[goods,customers] of int: order;     % Number of units of goods types ordered by customers
array[trucks] of int: centsPerKm;         % Cost of running trucks (in cents per km)
array[customers,customers] of int: D;     % Distances between customers (including the depot)


var int: tot_cost;                % Total cost of the solution


% Insert your other variables and constraints here
var trucks: truck_id; % id of a specific car
var customers: customer_id; % id of a specific customer
var goods : goods_value;  % whether there is a good on a truck, 1: yes, 0:no. 


array [ trucks, customers] of var 0..MAXCAP:  chilled_amount;  % an array of ( truck_id, customer_id) means how many chilled goods a truck carry to a customers.

array [ trucks, customers] of var 0..MAXCAP:  ambient_amount;   % an array of ( truck_id, customer_id) means how many ambient goods a truck carry to a customers.

array [ trucks, customers] of var times: time_index;   % an array of ( truck_id, customer_id) means the sequence of a truck moving to a customers.

array [ trucks, customers] of  var int: a_truck_journey;  % store each truck’s distance of different running stages(from one customer to other one). The truck that did not leave starting point should have 0 value. 


array [ trucks, customers] of var int : last_customer; % record the last customer of a truck.
 
array [trucks] of var int: back_distance; % store the distance of a truck going back from the last customer to depot.




predicate all_not_0_different( array[int,int] of var times:s, var int: x, var int:y) =  forall(x in trucks)(forall(y in customers)(if s[x,y] !=0 then forall([s[x,y] != s[x,z]|z in customers where y!=z]) else true endif ));  % define a predicate let a truck has a different visiting index of different customers.

constraint forall (truck_id in trucks)(if refrig[truck_id] = true then cap[truck_id] >= sum(customer_id in 1..C)(chilled_amount [truck_id, customer_id] + ambient_amount [truck_id, customer_id] ) else cap[truck_id] >= sum(customer_id in 1..C)(ambient_amount [truck_id, customer_id] + chilled_amount [truck_id, customer_id]) endif);   % check the truck is not overfilled.

constraint forall (customer_id in customers)(order[ambient, customer_id]= sum(truck_id in 1..T)( ambient_amount[truck_id, customer_id]));% check whether all the ambient order have been achieved.

constraint forall (customer_id in customers)(order[chilled, customer_id] = sum(truck_id in 1..T)( chilled_amount[truck_id, customer_id])); % check whether all the chilled order have been achieved.

constraint forall(y in 1..T)(if refrig[y] =false then  forall(z in 1..C)(chilled_amount[y, z] = 0 ) else true endif);  % make sure all the ambient trucks take the ambient goods.

constraint forall(truck_id in trucks)(forall(customer_id in customers)(if chilled_amount [truck_id, customer_id] = 0 /\ambient_amount [truck_id, customer_id] = 0  then time_index[truck_id, customer_id] = 0 else time_index[truck_id, customer_id] != 0 endif));  % if the truck has no goods then it can not visit any customer (value of its time_index should be 0).


constraint all_not_0_different(time_index,truck_id, customer_id);   % a truck whose the order of different customers should be different.

constraint forall(truck_id in trucks)(forall(customer_id in customers)(if time_index[truck_id, customer_id] != 0 then 
if  time_index[truck_id,customer_id] =1 then   % if the truck visits this customer in the first order. 

a_truck_journey[truck_id,customer_id] = D[0, customer_id] else 

if  time_index[truck_id,customer_id] = 2 then  % if the truck visits this customer in the second order.

a_truck_journey[truck_id,customer_id] = D[last_customer[truck_id,customer_id],customer_id] /\  time_index[truck_id, last_customer[truck_id,customer_id]] = 1 else 

if  time_index[truck_id,customer_id] = 3 then  % if the truck visits this customer in the third order.

a_truck_journey[truck_id,customer_id] = D[last_customer[truck_id,customer_id],customer_id] /\  time_index[truck_id, last_customer[truck_id,customer_id]] = 2 else

 a_truck_journey[truck_id,customer_id] = D[last_customer[truck_id,customer_id],customer_id] /\  time_index[truck_id, last_customer[truck_id,customer_id]] = 3 endif   %  the truck visits this customer in the 4th order.
 
endif 
endif 
else a_truck_journey[truck_id,customer_id] = 0 endif));  % store each truck’s distance of different running stages(from one customer to other one). The truck that did not leave starting point should have 0 value. 


constraint  forall(truck_id in trucks)(forall([ 
if time_index[truck_id, z] = 3 then  % if the final customer(z) of a truck is visited in the third order.
back_distance[truck_id] = D[z, 0] else 
if time_index[truck_id, x] = 2 then  % if the final customer(x) of a truck is visited in the second order.
back_distance[truck_id] = D[x, 0] else 
if time_index[truck_id, y] = 1 then  % if the final customer(y) of a truck is visited in the first order.
back_distance[truck_id] = D[y, 0] else 
back_distance[truck_id] = 0  endif  %  the truck did not leave start point, then value of back_distance should 0
endif 
endif|z , x, y in customers where y< x/\x < z]));  %  limit the back_distance of each truck

constraint tot_cost = sum(truck_id in trucks)(sum(customer_id in customers)(a_truck_journey[truck_id,customer_id]*centsPerKm[truck_id]) + back_distance[truck_id]*centsPerKm[truck_id]) div 100;  % calculate the total cost  

% In question Q3, we are optimising the total cost
solve minimize tot_cost;



% Write a Minizinc output item to print the solution in the desired format for Q3
output 
        [show(T)++" "++ show(C)++" "++show(tot_cost)++ "\n" ]++
        [if fix(time_index[truck_id, customer_id]) != 0 then 
        show(truck_id)  ++"," ++      
        show(time_index[truck_id, customer_id])++","++ 
        show(customer_id)  ++"," ++ 
        show(chilled_amount[truck_id, customer_id])++","++
        show(ambient_amount[truck_id, customer_id]) ++"\n" else "" endif |truck_id in 1..T, customer_id in 1..C];

Solution:
nb_trucks, nb_customers (not including the depot), tot_cost (in dollar)
[truck_id, time_id, customer_id, chilled_goods_units_delivered, ambient_goods_units_delivered]*

%input
C = 3;
T = 4;
G = 2;
MAXCAP = 10;

% Details of the truck types
cap        = [ 7,     8,     8,     10];
refrig     = [ false, false, true, true];
centsPerKm = [ 267,   280,  304,  330];

% Distances between places. Place 0 is the depot
D = array2d(customers,customers,
    [   0, 877, 896, 573,
      877, 0,  79, 296,
      895, 79,   0, 372,
      572, 296, 372,   0  ]);

% Orders placed by the customers.
order = array2d(goods,customers,
        [| 0, 0, 4, 10,
         | 0, 4, 8, 7  |]);

%output:
4 3 12341
1,3,1,0,4
1,1,2,0,1
1,2,3,0,2
2,1,2,0,3
2,2,3,0,5
3,1,2,4,4
4,1,3,10,0
----------
4 3 10941
1,1,3,0,7
2,1,2,0,8
3,1,3,8,0
4,3,1,0,4
4,1,2,4,0
4,2,3,2,0
----------
==========

% 双虚线表示optimal solution
% 单虚线表示satisfying solution

论述:
Time consumption (FD solver):
For 4-3: 1m 25s, if we use Gecode(bundled), then it is 198 msec.
For 6-3: Cannot finish in 1 min, if we use Gecode(bundled), then it is 3s 172 msec.
For 12-4: Cannot finish in 1 min.
For 21-8: Cannot finish in 1 min.

for all, the satisfied solutions can be found quickly.

In this question, I give 6 limitations and 2 new limitations.

  1. the truck is not overfilled.
  2. all the ambient orders have been achieved.
  3. all the chilled orders have been achieved.
  4. all the ambient trucks can only take the ambient goods.
  5. the truck has no goods then it cannot visit any customer.
  6. a truck whose the order of different customers should be different.

1.A new array, which store each truck’s distance of different running stages(from one customer to other one). The truck that did not leave starting point should have 0 value.

2.A new array, which store the distance of a truck going back from the last customer to depot. The truck that did not leave starting point should have 0 value.

tot_cost (dollar)= (the sum of each truck’running distance) * cost of cents per km / 100.

the sum of each truck’running distance = distance between depot and the first customer + distance between customers + distance between last customer and depot

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 217,406评论 6 503
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,732评论 3 393
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 163,711评论 0 353
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,380评论 1 293
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,432评论 6 392
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,301评论 1 301
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,145评论 3 418
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 39,008评论 0 276
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,443评论 1 314
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,649评论 3 334
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,795评论 1 347
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,501评论 5 345
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 41,119评论 3 328
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,731评论 0 22
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,865评论 1 269
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,899评论 2 370
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,724评论 2 354

推荐阅读更多精彩内容

  • 与中国较早地进入世俗化社会不同,欧洲人的文化生活与精神世界一直与宗教紧紧缠绕。在中世纪,文学是宗教的奴仆,宗教,...
    河聿阅读 850评论 0 1
  • 我也很想难过的大哭一场,可是我感觉我已经不会了,少年没了年少模样,在问了很多为什么和凭什么后,终于以一种看似平和的...
    懒追随阅读 151评论 0 0
  • 匠心独妙余木楼, 奇伟雄观耸云头。 乾隆下榻将诗留, 水城古韵耀九州。
    shuij阅读 319评论 0 0
  • 小裴为我再次抽到了吊人,她说:你在等待一个怎样的时机 才肯让灵性浮出水面 代替你的思索和心智 你身后的背景 教条 ...
    潼潼物语阅读 351评论 0 0