Answer to Question #206824 in Python for naveen

Question #206824

Polynomial

Given polynomial, write a program that prints polynomial in Cix^Pi + Ci-1x^Pi-1 + .... + C1x + C0 format.Input


The first line contains a single integer N.

Next N lines contain two integers Pi, Ci separated with space, where Pi denotes power and Ci denotes coefficient of Pi.Output


Print the polynomial in the format Cix^Pi + Ci-1x^Pi-1 + .... + C1x + C0, where Pi's are powers in decreasing order, Ci is coefficient, and C0 is constant. There will be space before and after the plus or minus sign.

If the coefficient is zero, then don't print the term.

If the term with the highest degree is negative, the term should represent -Cix^Pi.

For the term where power is 1, represent it as C1x instead of C1x^1.

If the polynomial degree is zero and the constant term is also zero, then print 0 to represent the polynomial.

For term Cix^Pi, if the coefficient of the term Ci is 1, print x^Pi instead of 1x^Pi.


1
Expert's answer
2021-06-14T08:53:11-0400
def getNumbers():
    N = int (input())
    numbers = []
    for i in range(N):
        numbers.append(input())
    numbers.sort(key=lambda v: int(v.split()[0]),reverse=True)
    return numbers




def printPolynomial(numbers):
    flag = True
    for values in numbers:
        Pi = int(values.split()[0])
        Ci = int(values.split()[1])
        if flag:
            if Ci == 0 and Pi == 0:
                print('0')
                break
            if Ci == 1 and Pi != 0:
                pass
            elif Ci == -1 and Pi != 0:
                print('-', end='')
            else:           
                print(f'{Ci}', end='')
            flag = False
        
        else:        
            if Ci > 0:
                print(' + ', end='')
            elif Ci < 0:
                print(' - ', end='')
            else:
                continue
            if abs(Ci)>1:
                print(f'{abs(Ci)}', end='')    
    
        if Pi == 0:
            continue
        if Pi == 1:
            print('x', end='')
        else:
            print(f'x^{Pi}', end='')    


printPolynomial(getNumbers())






Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS