mirror of
https://bitbucket.org/Mattrixwv/projecteulercpp.git
synced 2025-12-06 17:13:59 -05:00
109 lines
3.2 KiB
C++
109 lines
3.2 KiB
C++
//ProjectEuler/C++/Source/Problem4.cpp
|
|
//Matthew Ellison
|
|
// Created: 09-28-18
|
|
//Modified: 07-14-19
|
|
//Find the largest palindrome made from the product of two 3-digit numbers
|
|
//Unless otherwise listed all non-standard includes are my own creation and available from https://bibucket.org/Mattrixwv/myClasses
|
|
/*
|
|
Copyright (C) 2019 Matthew Ellison
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
#include <sstream>
|
|
#include <algorithm>
|
|
#include "Stopwatch.hpp"
|
|
#include "../Headers/Problem.hpp"
|
|
#include "../Headers/Problem4.hpp"
|
|
|
|
|
|
int Problem4::START_NUM = 100;
|
|
int Problem4::END_NUM = 999;
|
|
|
|
Problem4::Problem4() : Problem("Find the largest palindrome made from the product of two 3-digit numbers."){
|
|
}
|
|
|
|
void Problem4::solve(){
|
|
//If the problem has already been solved do nothing and end the function
|
|
if(solved){
|
|
return;
|
|
}
|
|
//Start the timer
|
|
timer.start();
|
|
|
|
//Start at the first 3-digit number and check every one up to the last 3-digit number
|
|
for(int firstNum = START_NUM;firstNum <= END_NUM;++firstNum){
|
|
//You can start at the location of the first number because everything before that has already been tested. (100*101 == 101*100)
|
|
for(int secondNum = firstNum;secondNum < END_NUM;++secondNum){
|
|
//Get the product
|
|
uint64_t product = firstNum * secondNum;
|
|
//Change the number to a string
|
|
std::string productString= std::to_string(product);
|
|
//Reverse the string
|
|
std::string revProductString = productString;
|
|
std::reverse(revProductString.begin(), revProductString.end());
|
|
|
|
//If the number and it's reverse are the same it is a palindrome so add it to the vector
|
|
if(productString == revProductString){
|
|
palindromes.push_back(product);
|
|
}
|
|
//If it's not a palindrome ignore it and move to the next number
|
|
}
|
|
}
|
|
|
|
//Sort the palindromes so that the last one is the largest
|
|
std::sort(palindromes.begin(), palindromes.end());
|
|
|
|
//Stop the timer
|
|
timer.stop();
|
|
|
|
//Throw a flag to show the problem is solved
|
|
solved = true;
|
|
}
|
|
|
|
std::string Problem4::getString() const{
|
|
//If the problem hasn't been solved throw an exception
|
|
if(!solved){
|
|
throw unsolved();
|
|
}
|
|
//Print the results
|
|
std::stringstream results;
|
|
results << "The largest palindrome is " << *(palindromes.end() - 1);
|
|
return results.str();
|
|
}
|
|
|
|
std::vector<uint64_t> Problem4::getPalindromes() const{
|
|
//If the problem hasn't been solved throw an exception
|
|
if(!solved){
|
|
throw unsolved();
|
|
}
|
|
return palindromes;
|
|
}
|
|
|
|
uint64_t Problem4::getLargestPalindrome() const{
|
|
//If the problem hasn't been solved throw an exception
|
|
if(!solved){
|
|
throw unsolved();
|
|
}
|
|
return *(palindromes.end() - 1);
|
|
}
|
|
|
|
void Problem4::reset(){
|
|
Problem::reset();
|
|
palindromes.clear();
|
|
}
|