Poj 1014 Dividing

昨天刷了一个最简单的 01 背包,正好趁热打铁,多搞几个背包的题。题目位于 Dividing,copy 如下:

Description

Marsha and Bill own a collection of marbles. They want to split the collection among themselves so that both receive an equal share of the marbles. This would be easy if all the marbles had the same value, because then they could just split the collection in half. But unfortunately, some of the marbles are larger, or more beautiful than others. So, Marsha and Bill start by assigning a value, a natural number between one and six, to each marble. Now they want to divide the marbles so that each of them gets the same total value. Unfortunately, they realize that it might be impossible to divide the marbles in this way (even if the total value of all marbles is even). For example, if there are one marble of value 1, one of value 3 and two of value 4, then they cannot be split into sets of equal value. So, they ask you to write a program that checks whether there is a fair partition of the marbles.
Input

Each line in the input file describes one collection of marbles to be divided. The lines contain six non-negative integers n1 , . . . , n6 , where ni is the number of marbles of value i. So, the example from above would be described by the input-line "1 0 1 2 0 0". The maximum total number of marbles will be 20000. 
The last line of the input file will be "0 0 0 0 0 0"; do not process this line.
Output

For each collection, output "Collection #k:", where k is the number of the test case, and then either "Can be divided." or "Can't be divided.". 
Output a blank line after each test case.
Sample Input

1 0 1 2 0 0 
1 0 0 0 1 1 
0 0 0 0 0 0 
Sample Output

Collection #1:
Can't be divided.

Collection #2:
Can be divided.

大意就是每组数据包含六个值,每个值代表的是拥有该权重的 marbles 的数量。求是否可以平均分配。换个角度,这其实就是一个完全背包问题,即是否可以完整装满一个 total/2 的背包。
这道题提交了 10 次才 A 掉,4 次 Time Limit Exceeded,5 次 Runtime Error(都是数组越界造成的)。
下边的代码其实依然很乱(估计也没人看),而且应该仍有优化空间,不过终究是 A 掉了,先贴出来,稍后在优化。
具体优化有几个点:
1、先计算 total,total 为奇数时必然是不可分的。
2、大于 total/2 的值一律不用计算。因为对结果没有影响。
3、先处理奇数,再处理偶数。在处理偶数时,当 total/2 为偶数时,则只用计算偶数位,反之则只用计算奇数位。
4、循环时可以先计算出当次循环最大的 index 和最小的 index,过大或者过小的都没必要处理。

代码如下:

#include <stdio.h>
#include<iostream>
using namespace std;

int MAX_LENGTH = 60000;
int n[7];
bool result[60002];

#define min(a, b) (a < b ? a : b)

int maxSum = 1;
int curTotal = 1;
int dividNum = 1;

// 处理奇数
void processOdd(int value) {
    int number = n[value];
    
    int minLoop = (curTotal - dividNum > 1 ? curTotal - dividNum : 1);
    int maxLoop = min(maxSum, dividNum);
    
    int tmp = 0;
    int k = 0;
    
    for (int t = maxLoop; t >= minLoop; t--) {
        if (result[t]) {
            for (k = number; k >= 1; k--) {
                tmp = t + k * value;
                if (tmp <= dividNum) {
                    result[tmp] = true;
                    if (maxSum < tmp) {
                        maxSum = tmp;
                    }
                }
            }
        }
    }

    for (int i = 1; i <= number; i++) {
        if (value * i <= dividNum) {
            result[value * i] = true;
            if (maxSum < value * i) {
                maxSum = value * i;
            }
        }
    }
    
    curTotal += value * number;
}

// 处理偶数
void processEven(int value, bool isOdd) {
    int number = n[value];
    
    int minLoop = (curTotal - dividNum > 1 ? curTotal - dividNum : 1);
    int maxLoop = min(maxSum, dividNum);
    
    int tmp = 0;
    int k = 0;
    
    if ((maxLoop%2) != isOdd) {
        maxLoop -= 1;
    }
    
    for (int t = maxLoop; t >= minLoop; t-=2) {
        if (result[t]) {
            for (k = number; k >= 1; k--) {
                tmp = t + k * value;
                if (tmp <= dividNum) {
                    result[tmp] = true;
                    if (maxSum < tmp) {
                        maxSum = tmp;
                    }
                }
            }
        }
    }
    if (!isOdd) {
        for (int i = 1; i <= number; i++) {
            if (value * i <= dividNum) {
                result[value * i] = true;
                if (maxSum < value * i) {
                    maxSum = value * i;
                }
            }
        }
    }
    
    curTotal += value * number;
}

void processResult(int num) {
    memset(result, 0, sizeof(result));
    maxSum = 1;
    curTotal = 1;
    dividNum = num;
    for (int i = 1; i <=6; i+=2) {
        if (n[i] != 0) {
            processOdd(i);
        }
    }
    for (int i = 2; i <= 6; i+=2) {
        if (n[i] != 0) {
            processEven(i, num%2 == 1);
        }
    }
}

int main(int argc, const char * argv[]) {
    int total = 0;

    int round = 0;
    while (true) {
        total = 0;
        round++;
        for (int i = 1; i <= 6; i++) {
            scanf("%d", &n[i]);
            total += (n[i] * i);
        }

        if (total == 0) {
            return 0;
        }

        printf("Collection #%d:\n", round);

        if (total % 2 != 0) {
            printf("Can't be divided.\n\n");
            continue;
        }

        int dividNum = total / 2;
        processResult(dividNum);

        if (!result[dividNum]) {
            printf("Can't be divided.\n\n");
        } else {
            printf("Can be divided.\n\n");
        }
    }
}

如下的代码逻辑比较简单,但是会超时:

#include <stdio.h>
#include<iostream>
using namespace std;

int MAX_LENGTH = 60000;
int n[7];
bool result[60002];

#define min(a, b) (a < b ? a : b)

void processResult(int dividNum) {
    int maxSum = 1;
    int curTotal = 1;
    for (int i = 1; i <= 6; i++) {
        if (n[i] != 0) {
            for (int k = 1; k <= n[i]; k++) {
                int minLoop = (curTotal - dividNum > 1 ? curTotal - dividNum : 1);
                for (int t = min(maxSum, dividNum); t >= minLoop; t--) {
                    if (result[t] && t + i <= dividNum) {
                        result[t + i] = true;
                        if (maxSum < t + i) {
                            maxSum = t + i;
                        }
                    }
                }
                curTotal += i;
                if (i*k <= dividNum) {
                    result[i*k] = true;
                    if (maxSum < i*k) {
                        maxSum = i*k;
                    }
                }
            }
        }
    }
}

int main(int argc, const char * argv[]) {
    int total = 0;
    
    int round = 0;
    while (true) {
        total = 0;
        round++;
        for (int i = 1; i <= 6; i++) {
            scanf("%d", &n[i]);
            total += (n[i] * i);
        }
        
        if (total == 0) {
            return 0;
        }
        
        printf("Collection #%d:\n", round);
        
        if (total % 2 != 0) {
            printf("Can't be divided.\n\n");
            continue;
        }
        
        memset(result, 0, sizeof(result));
        int dividNum = total / 2;
        processResult(dividNum);
        
        if (!result[dividNum]) {
            printf("Can't be divided.\n\n");
        } else {
            printf("Can be divided.\n\n");
        }
    }   
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,980评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,178评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,868评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,498评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,492评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,521评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,910评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,569评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,793评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,559评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,639评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,342评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,931评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,904评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,144评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,833评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,350评论 2 342

推荐阅读更多精彩内容