当前你的浏览器版本过低,网站已在兼容模式下运行,兼容模式仅提供最小功能支持,网站样式可能显示不正常。
请尽快升级浏览器以体验网站在线编辑、在线运行等功能。

建议使用的浏览器:

谷歌Chrome 火狐Firefox Opera浏览器 微软Edge浏览器 QQ浏览器 360浏览器 傲游浏览器

3526:The Teacher’s Side of Math

题目描述

One of the tasks students routinely carry out in their mathematics classes is to solve a polynomial equation. It is, given a polynomial, say X2 − 4X + 1, to find its roots (2 ± √3).

If the students’ task is to find the roots of a given polynomial, the teacher’s task is then to find a polynomial that has a given root. Ms. Galsone is an enthusiastic mathematics teacher who is bored with finding solutions of quadratic equations that are as simple as a + bc. She wanted to make higher-degree equations whose solutions are a little more complicated. As usual in problems in mathematics classes, she wants to maintain all coefficients to be integers and keep the degree of the polynomial as small as possible (provided it has the specified root). Please help her by writing a program that carries out the task of the teacher’s side.

You are given a number t of the form:

t = ma + nb

where a and b are distinct prime numbers, and m and n are integers greater than 1.

In this problem, you are asked to find t’s minimal polynomial on integers, which is the polynomial F(X) = adXd + ad−1Xd−1 + ⋯ + a1X + a0 satisfying the following conditions.

  1. Coefficients a0, …, ad are integers and ad > 0.

  2. F(t) = 0.

  3. The degree d is minimum among polynomials satisfying the above two conditions.

  4. F(X) is primitive. That is, coefficients a0, …, ad have no common divisors greater than one.

For example, the minimal polynomial of √3 + √2 on integers is F(X) = X4 − 10X2 + 1. Verifying F(t) = 0 is as simple as the following (α = √3, β = √2).

F(t)= (α + β)4 − 10(α + β)2 + 1
= (α4 + 4α3β + 6α2β2 + 4αβ3 + β4) − 10(α2 + 2αβ + β2) + 1
= 9 + 12αβ + 36 + 8αβ + 1 − 10(3 + 2αβ + 2) + 1
= (9 + 36 + 4 − 50 + 1) + (12 + 8 − 20)αβ
= 0

Verifying that the degree of F(t) is in fact minimum is a bit more difficult. Fortunately, under the condition given in this problem, which is that a and b are distinct prime numbers and m and n greater than one, the degree of the minimal polynomial is always mn. Moreover, it is always monic. That is, the coefficient of its highest-order term (ad) is one.

输入解释

The input consists of multiple datasets, each in the following format.

a m b n

This line represents ma + nb. The last dataset is followed by a single line consisting of four zeros. Numbers in a single line are separated by a single space.

Every dataset satisfies the following conditions.

  1. ma + nb ≤ 4.

  2. mn ≤ 20.

  3. The coefficients of the answer a0, …, ad are between (−231 + 1) and (231 − 1), inclusive.

输出解释

For each dataset, output the coefficients of its minimal polynomial on integers F(X) = adXd + ad−1Xd−1 + ⋯ + a1X + a0, in the following format.

ad ad−1a1 a0

Non-negative integers must be printed without a sign (+ or −). Numbers in a single line must be separated by a single space and no other characters or extra spaces may appear in the output.

输入样例
3 2 2 2
3 2 2 3
2 2 3 4
31 4 2 3
3 2 2 7
0 0 0 0
输出样例
1 0 -10 0 1
1 0 -9 -4 27 -36 -23
1 0 -8 0 18 0 -104 0 1
1 0 0 -8 -93 0 24 -2976 2883 -32 -3720 -23064 -29775
1 0 -21 0 189 0 -945 -4 2835 -252 -5103 -1260 5103 -756 -2183

该题目是Virtual Judge题目,来自 北京大学POJ

题目来源 Japan 2007

源链接: POJ-3526

最后修改于 2020-10-29T07:03:45+00:00 由爬虫自动更新

共提交 0

通过率 --%
时间上限 内存上限
5000 65536