package Backtracking;import java.util.Scanner;/** Problem Statement :* Find the number of ways that a given integer, N , can be expressed as the sum of the Xth powers of unique, natural numbers.* For example, if N=100 and X=3, we have to find all combinations of unique cubes adding up to 100. The only solution is 1^3+2^3+3^3+4^3.* Therefore output will be 1.*/public class PowerSum {public static void main(String[] args) {Scanner sc = new Scanner(System.in);System.out.println("Enter the number and the power");int N = sc.nextInt();int X = sc.nextInt();PowerSum ps = new PowerSum();int count = ps.powSum(N,X);//printing the answer.System.out.println("Number of combinations of different natural number's raised to "+X+" having sum "+N+" are : ");System.out.println(count);sc.close();}private int count = 0,sum=0;public int powSum(int N, int X) {Sum(N,X,1);return count;}//here i is the natural number which will be raised by X and added in sum.public void Sum(int N, int X,int i) {//if sum is equal to N that is one of our answer and count is increased.if(sum == N) {count++;return;}//we will be adding next natural number raised to X only if on adding it in sum the result is less than N.else if(sum+power(i,X)<=N) {sum+=power(i,X);Sum(N,X,i+1);//backtracking and removing the number added last since no possible combination is there with it.sum-=power(i,X);}if(power(i,X)<N) {//calling the sum function with next natural number after backtracking if when it is raised to X is still less than X.Sum(N,X,i+1);}}//creating a separate power function so that it can be used again and again when required.private int power(int a , int b ){return (int)Math.pow(a,b);}}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。