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.cpp | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 ThePowerSum.cpp (limited to 'ThePowerSum.cpp') diff --git a/ThePowerSum.cpp b/ThePowerSum.cpp deleted file mode 100644 index 7f7e032..0000000 --- a/ThePowerSum.cpp +++ /dev/null @@ -1,36 +0,0 @@ -#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