Answer to Question #206634 in Python for arjun reddy

Question #206634

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.Explana

"6x^3 + 10x^2 + 5"Constraints


N <= 100

0 <= Pi < 1000

-1000 <= Ci <= 1000


1
Expert's answer
2021-06-15T05:06:47-0400
n = int(input('N: '))
pol = dict()
for _ in range(n):
    p, c = [int(x) for x in input('P, C: ').split()]
    if p in pol:
        pol[p] += c
    else:
        pol[p] = c
output = ''
for p in sorted(pol, reverse=True):
    if pol[p] < 0:
        if output:
            output += ' - '
        else:
            output += '-'
    elif pol[p] > 0:
        if output:
            output += ' + '
        else:
            pass
    elif pol[p] == 0:
        continue

    if abs(pol[p]) != 1:
        output += str(abs(pol[p]))
    elif pol[p] == 1 and p == 0:
        output += '1'
        continue

    if p == 1:
        output += 'x'
    elif p > 0:
        output += f'x^{p}'
if output:
    print(output)
else:
    print('0')

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

arjun reddy
14.06.21, 05:14

5 0 -2 output7x^4 + 6x^3 - 1x^2 - 3x - 2 expected 7x^4 + 6x^3 - x^2 - 3x - 2 please correct 3 6 4 7 1 -3 2 -1

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS