我正在尝试解决这个难题:运输编码难题。这是我到目前为止提出的代码:
#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
.