博客
关于我
2019牛客网暑期多校赛第七场B题--Irreducible Polynomial--多项式可分解判别
阅读量:741 次
发布时间:2019-03-21

本文共 151 字,大约阅读时间需要 1 分钟。

判断多项式是否不可分解的关键在于其次数和二次项情况。具体规则如下:

  • 如果多项式的次数n大于2,则无法直接判断一定能分解,但根据问题描述,当n>2或n=2且判别式大于等于0时,可以确定多项式可分解。

  • 因此,编写程序时,当n≥2且判别式满足条件时,返回No;否则返回Yes。

  • 最终,代码实现了这个判断逻辑。

    转载地址:http://zyvgz.baihongyu.com/

    你可能感兴趣的文章
    PAT (Basic Level) Practise - 写出这个数
    查看>>
    PAT 1027 Colors in Mars
    查看>>
    PAT 1127 ZigZagging on a Tree[难]
    查看>>
    PAT 2-07. 素因子分解(20)
    查看>>
    SparkSQL学习03-数据读取与存储
    查看>>
    PAT L2-012. 关于堆的判断
    查看>>
    PAT Spell It Right [非常简单]
    查看>>
    PAT-1044. Shopping in Mars (25)
    查看>>
    PAT-乙级-1040 有几个PAT
    查看>>
    Spring组件扫描配置
    查看>>
    PAT1093 Count PAT's (25)(逻辑题)
    查看>>
    PATA1038题解(需复习)
    查看>>
    Patching Array
    查看>>
    Spring源码学习(二):Spring容器之prepareContext和BeanFactoryPostProcessor的介绍
    查看>>
    PatchMatchStereo可能会需要的Rectification
    查看>>
    Path does not chain with any of the trust anchors
    查看>>
    Path形状获取字符串型变量数据
    查看>>
    PAT甲级——1001 A+B Format (20分)
    查看>>
    Skywalking原理
    查看>>
    PAT甲级——1006 Sign In and Sign Out (25分)
    查看>>