1

我正在尝试解决这个难题:运输编码难题。这是我到目前为止提出的代码:

#include <fcntl.h>
#include <sys/mman.h>
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
#include <sstream>
#include <set>
using namespace std;
struct Container
{
    Container(int c, int w) : cost(c), weight(w){}
    int cost;
    int weight;
    bool operator<(const Container& c) const
    {
        return double(cost)/weight < double(c.cost)/c.weight;
    }
};
int main(int argc, char** argv)
{
    int fd = open(argv[1], O_RDONLY);
    char* pContent = (char*)mmap(NULL, 128 * sizeof(int), PROT_READ, MAP_PRIVATE, fd, 0);
    pContent += 8;
    stringstream ss(pContent);
    int unload = 0;
    ss >> unload;
    set<Container> containers;
    int cost = 0, weight = 0;
    while(ss >> cost)
    {
        ss >> weight;
        containers.insert(Container(cost, weight));
    }

    const Container& best = *containers.begin();
    cost = best.cost * ceil(double(unload)/best.weight);
    printf("%d\n", cost);
    return 0;
}

我知道这个逻辑可能存在一些错误。但我的问题与逻辑无关。当我提交此代码时,它成功运行,但我得到的分数低于它所说的次要页面错误数409。当我看到排行榜时,有人提交了带有轻微页面错误的 C++ 代码69。有什么办法可以控制这些轻微的页面错误?可能正在使用一些 g++ 标志?现在我的make文件很简单:g++ -o MyExe MyExe.cc.

4

1 回答 1

2

您将受到 Gild 用于判断这些的任何算法和运行时环境的支配。我认为编译器标志可能是一个红鲱鱼;我怀疑以“发布模式”提交会为您打开 -O2 或 -O3 。

我怀疑这是优化内存使用的问题,可能是内存局部性。例如,那个 stringstream 和 set 可能会变得非常昂贵;在你的鞋子里,我会开始寻找是否有另一种方法,也许是更量身定制的算法。

于 2011-10-30T06:15:50.850 回答