
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Minimum Number of Palindromes Required to Express N as a Sum Using C++
Problem statement
Given a number N, we have to find the minimum number of palindromes required to express N as a sum of them
If N = 15 then 2 palindromes are required i.e. 8 and 7.
Algorithm
1. Generate all the palindromes up to N in a sorted fashion 2. Find the size of the smallest subset such that its sum is N
Example
#include <iostream> #include <vector> #include <climits> #include <algorithm> using namespace std; vector<vector<long long>> table; int createPalindrome(int input, bool isOdd){ int n = input; int palindrome = input; if (isOdd) n /= 10; while (n > 0) { palindrome = palindrome * 10 + (n % 10); n /= 10; } return palindrome; } vector<int>generatePalindromes(int n){ vector<int> palindromes; int number; for (int j = 0; j < 2; j++) { int i = 1; while ((number = createPalindrome(i++, j)) <= n) palindromes.push_back(number); } return palindromes; } long long minSubsetSize(vector<int>& vec, int i, int j, int n){ if (n == 0) return 0; if (i > j || vec[i] > n) return INT_MAX; if (table[i][n]) return table[i][n]; table[i][n] = min(1 + minSubsetSize(vec, i + 1, j, n - vec[i]), minSubsetSize(vec, i + 1, j, n)); return table[i][n]; } int requiredPalindromes(int n){ vector<int> palindromes = generatePalindromes(n); sort(palindromes.begin(), palindromes.end()); table = vector<vector<long long>>(palindromes.size(), vector<long long>(n + 1, 0)); return minSubsetSize(palindromes, 0, palindromes.size() - 1, n); } int main(){ int n = 15; cout << "Minimum required palindromes = " << requiredPalindromes(n) << endl; return 0; }
Output
When you compile and execute the above program. It generates the following output −
Minimum required palindromes = 2
Advertisements