mirror of
https://bitbucket.org/Mattrixwv/projecteulercpp.git
synced 2025-12-06 17:13:59 -05:00
55 lines
1.8 KiB
C++
55 lines
1.8 KiB
C++
//ProjectEuler/C++/Headers/Problem24.hpp
|
|
//Matthew Ellison
|
|
// Created: 11-11-18
|
|
//Modified: 07-14-19
|
|
//What is the millionth lexicographic permutation of the digits 0, 1, 2, 3, 4, 5, 6, 7, 8 and 9?
|
|
//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/>.
|
|
*/
|
|
|
|
#ifndef PROBLEM24_HPP
|
|
#define PROBLEM24_HPP
|
|
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include "Problem.hpp"
|
|
|
|
|
|
class Problem24 : public Problem{
|
|
private:
|
|
static int NEEDED_PERM; //The number of the permutation that you need
|
|
static std::string nums; //All of the characters that we need to get the permutations of
|
|
std::vector<std::string> permutations; //Holds all of the permutations of the string nums
|
|
public:
|
|
Problem24();
|
|
virtual void solve();
|
|
virtual std::string getString() const;
|
|
virtual void reset();
|
|
//Returns a vector with all of the permutations
|
|
std::vector<std::string> getPermutationsList() const;
|
|
//Returns the specific permutations you are looking for
|
|
std::string getPermutation() const;
|
|
};
|
|
|
|
/* Results
|
|
The 1 millionth permutation is 2783915460
|
|
It took 1.166 seconds to solve this problem.
|
|
*/
|
|
|
|
#endif //PROBLEM24_HPP
|