[Project]Capacitated Facility Location Problem

问题描述

给定n个设备和m个顾客

  • 每个顾客有一定的需求(demand)需要被设备满足,记为d[i]
  • 每个设备有不同的满足顾客需求的容量(capacity),记为c[j]
  • 每个设备有不同的开启费用(opening cost),记为o[j]
  • 不同顾客分配到不同设备会有不同的分配费用(assignment cost),记为a[i][j]

现在所要达成的目的是要满足所有顾客的要求,同时使opening costassignment cost的总和(total cost)最小。问:

  1. 最终哪些设备要开启?
  2. 对所有顾客的最终分配方案是怎么样的?

分析

m个顾客会有n中不同的选择,如果我们要穷尽所有的可能,时间复杂度将会是 O(n^m),显然这不是一个很好的选择;所以我们应该采取更优的做法。

首先先写出主程序框架:

int main(){

    for(int testCase = 1; testCase <= 71; testCase ++){

        // Data declaration
        int n, m;   // n facilities, m customers
        int* d;     // demands of customers
        int* c;     // capacities of facilities
        int* o;     // opening cost of facilities
        int** a;    // assignment cost for each (cus, fac)

        bool* open_state;   // result: open state of facilities
        int* assign_state;  // result: assignment of cus->fac
        
        // Load files
        ifstream infile;
        char filename[32];
        sprintf_s(filename, "Instances\\p%d", testCase);
        infile.open(filename, ios::in);

        if(!infile.is_open ()){
            cout << "Open file failure: " << filename <<  endl;
            continue;
        }

        infile >> n >> m;
        c = new int[n];
        o = new int[n];
        for(int i = 0; i < n; ++i){
            infile >> c[i] >> o[i]; 
        }
        d = new int[m];
        a = new int*[m];
        for(int i = 0; i < m; ++i){
            a[i] = new int[n];
            infile >> d[i];
        }

        for(int i = 0; i < m; ++i){
            for(int e = 0; e < n; ++e){
                infile >> a[i][e];
            }
        }
        infile.close();

        open_state = new bool[n];
        for(int i = 0; i < n; ++i) open_state[i] = false;
        assign_state = new int[m];
        
        // Calculate
        int result = Algorithm(n,m,d,c,o,a,open_state,assign_state);

        // Output Results
        sprintf_s(filename, "results\\greedy\\p%d", testCase);
        ofstream outfile(filename);
        if(result == -1){
            outfile << "No result" << endl;
            continue;
        }
        outfile << result << endl;
        for(int i = 0; i < n; ++i)
            outfile << open_state[i] << ' ';
        outfile << endl;
        for(int i = 0; i < m; ++i)
            outfile << assign_state[i] << ' ';
        outfile << endl;

        // Release space
        for(int i = 0; i < m; ++i){
            delete[] a[i];
        }
        delete[] c, o, open_state, assign_state;
    }
}

贪心算法

首先比较容易想到的是贪心算法。按照逐个顾客分配的办法,每次为顾客进行分配的时候,需要找到为他分配设备的最小花费,这有可能是:

  • 无需重新分配新的设备,花费总额为 a[i][j]
  • 分配新的设备,花费总额为 c[j]+a[i][j]

值得一提的是,贪心算法大概率不是最优算法,甚至有可能会有在原本有解的情况下算出无解的答案。但其优点是会比较快。

#include <iostream>
#include "greedy.hpp"
using namespace std;

int Greedy(int n, int m, int *d, int *c, int *o, int **a, bool *os, int* as){

    int tc = 0;
    for(int curCus = 0; curCus != m; ++curCus){
        int minCost = INT32_MAX;
        int curChoice = -1;
        for(int curFac = 0; curFac != n; curFac++){
            if(d[curCus] <= c[curFac]){
                int tempCost = a[curCus][curFac];
                tempCost += os[curFac] ? 0 : o[curFac];
                if(tempCost < minCost){
                    minCost = tempCost;
                    curChoice = curFac;
                }
            }
        }
        if(curChoice == -1)
            return -1;
        
        os[curChoice] = true;
        as[curCus] = curChoice;
        c[curChoice] -= d[curCus];
        tc += minCost;
    }
    return tc;
}

运算结果:

problem totalCost time
p1 18076 0
p2 12899 0
p3 18441 0
p4 22698 0
p5 17665 0
p6 12930 0
p7 20782 0
p8 23191 0
p9 15685 0
p10 11172 0
p11 20501 0
p12 21717 0
p13 15862 0
p14 12419 0
p15 16778 0
p16 23752 0
p17 15009 0
p18 12005 0
p19 18851 0
p20 22479 0
p21 15252 0
p22 11524 0
p23 17018 0
p24 22259 0
p25 16138 0
p26 17971 0
p27 18773 0
p28 25728 0
p29 19800 0
p30 17967 0

具体的分配结果可见github仓库

贪心算法V1

在上面的算法中,我们取p1的结果为例:

18076
1 1 1 1 0 1 1 0 1 1 
1 1 1 8 1 9 8 9 8 9 9 9 9 9 9 9 5 9 9 5 5 5 5 5 5 5 5 5 5 0 3 0 5 0 3 0 0 3 0 0 0 3 3 3 8 3 3 2 2 6 

我们可以发现使用贪心算法,顾客倾向于不开新的设备,因为新开设备要加上开设备的费用。可以理解到,每个顾客都把开某个设备的费用算到了自己头上,就像滚烫的山芋不愿意握在手上;但实际上开设备的费用最终是落到总费用上,所以我们可以试一下顾客不去考虑开工厂的费用,到最后再去算。

代码和上面类似V1版本的类似,只有一些细微的修改

// 删去这行
tempCost += os[curFac] ? 0 : o[curFac];
// 增加这个
if(!os[curChoice]){
    minCost += o[curChoice];
    os[curChoice] = true;
}

结果:

problem totalCost time
p1 10355 0
p2 9041 0
p3 11041 0
p4 13041 0
p5 10827 0
p6 9513 0
p7 11513 0
p8 13513 0
p9 10355 0
p10 9041 0
p11 11041 0
p12 13041 0
p13 11915 0
p14 9426 0
p15 13026 0
p16 16626 0
p17 11915 0
p18 9426 0
p19 13026 0
p20 16626 0
p21 11915 0
p22 9426 0
p23 13026 0
p24 16626 0
p25 16655 0
p26 14125 0
p27 18925 0
p28 23725 0
p29 17487 0
p30 14750 0
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,928评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,192评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,468评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,186评论 1 286
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,295评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,374评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,403评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,186评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,610评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,906评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,075评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,755评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,393评论 3 320
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,079评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,313评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,934评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,963评论 2 351

推荐阅读更多精彩内容