From 3a89fc707253f75f46fd5a4822817f1fd5156c40 Mon Sep 17 00:00:00 2001 From: Omar Magdy Date: Mon, 30 May 2022 00:18:17 +0200 Subject: Made that every problem is its own folder to make building the code a smooth operation with a shortcut --- ThePowerSum/ThePowerSum.cpp | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 ThePowerSum/ThePowerSum.cpp (limited to 'ThePowerSum') diff --git a/ThePowerSum/ThePowerSum.cpp b/ThePowerSum/ThePowerSum.cpp new file mode 100644 index 0000000..7f7e032 --- /dev/null +++ b/ThePowerSum/ThePowerSum.cpp @@ -0,0 +1,36 @@ +#include + +using namespace std; + +int power(int base, int p){ + if(p == 0) { + return 1; + } + return base * (power(base, p - 1)); +} + +vector ans; + +int powerSum(int x, int n, int lastDigit) { + if (x == 0) { + for(int x : ans) { + cout << x << "^" << n << " + "; + } + cout << endl; + return 1; + } + int sum = 0; + for(int i = lastDigit; x - power(i, n) >= 0; i++) { + ans.push_back(i); + sum += powerSum(x - power(i, n), n, i + 1); + ans.pop_back(); + } + return sum; +} + +int main() { + int x, n, count = 0; + cin >> x >> n; + cout << powerSum(x, n, 1) << endl; + return 0; +} -- cgit v1.2.3