KY196 复数集合

KY196 复数集合

import heapq

class ComplexNum():
    def __init__(self, real, imag):
        self.real = real
        self.imag = imag
    def __lt__(self, other):
        if self.real**2 + self.imag**2 != other.real**2 + other.imag**2:
            return self.real**2 + self.imag**2 > other.real**2 + other.imag**2
        else:
            return self.real > other.real
    def __repr__(self):
        return str(self.real) + '+i' + str(self.imag)

def main():
    n = int(input().strip())
    numsList = list()
    for i in range(n):
        command = input().strip()
        if 'Pop' in command:
            if len(numsList)==0:
                print('empty')
            else:
                item = heapq.heappop(numsList)
                print(item)
                print('SIZE = {}'.format(len(numsList)))
        elif 'Insert' in command:
            num = command.split()[1]
            real, imag = num.split('+i')
            heapq.heappush(numsList, ComplexNum(real=eval(real), imag=eval(imag)))
            print('SIZE = {}'.format(len(numsList)))

if __name__=='__main__':
    try:
        while True:
            main()
    except:
        pass
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值