这是我要说的问题 http://projecteuler.net/index.php?section=problems&id=99
我的代码将编译并正确运行。我猜测计算是搞乱的地方。它告诉我,第633行是最大的(欧拉说的项目不正确)。
#include <iostream>
#include <string>
#include <fstream>
using namespace std;
int poww(int base, int exp);
int main()
{
//ignore messy/unused variables. I am desperate
int lineNumber = 0;
string line;
int answerLine = 0;
int max =0;
int lineNum = 0;
int answer =0;
ifstream inFile;
size_t location;
string temp1,temp2;
int tempMax = 0;
int base,exp = 0;
inFile.open("C:\\Users\\myYser\\Desktop\\base_exp.txt");
while(getline(inFile,line))
{
lineNumber++;
location = line.find(",");
temp1 = line.substr(0,(int(location)));
temp2 = line.substr((int(location)+1),line.length());
//cout << temp1 << " " << temp2 << endl;
base = atoi(temp1.c_str());
exp = atoi(temp2.c_str());
tempMax= poww(base,exp);
if (tempMax > max){
max = tempMax;
answer = base;
answerLine = lineNumber;
}
}
cout << answer << " " << answerLine;
cin.get();
return 0;
}
int poww(int base, int exp)
{
int result = 1;
while (exp)
{
if (exp & 1)
result *= base;
exp >>= 1;
base *= base;
}
return result;
}
答案 0 :(得分:5)
你在想这个问题。
你需要想出一种方法来大幅减少这些数字,这样你仍然可以比较它们。换句话说,您可能希望研究一种比较结果的位数的方法。
提示将是log(a ^ b)= b * log(a)
答案 1 :(得分:3)
一个32位的int只能容纳2 ^ 32个值,其中一些在某些时候神奇地变为负值......