A11626 | A Determined Cleanup
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
In order to put away old things and welcome a fresh new year, a thorough cleaning of the house is a must.
Little Tommy finds an old polynomial and cleaned it up by taking it modulo another. But now he regrets doing this...
Given two integers $p$ and $k$ , find a polynomial $f(x)$ with non-negative integer coefficients strictly less than $k$ , whose remainder is $p$ when divided by $(x+k)$ . That is, $f(x)=q(x)·(x+k)+p$ , where $q(x)$ is a polynomial (not necessarily with integer coefficients).
Little Tommy finds an old polynomial and cleaned it up by taking it modulo another. But now he regrets doing this...
Given two integers $p$ and $k$ , find a polynomial $f(x)$ with non-negative integer coefficients strictly less than $k$ , whose remainder is $p$ when divided by $(x+k)$ . That is, $f(x)=q(x)·(x+k)+p$ , where $q(x)$ is a polynomial (not necessarily with integer coefficients).
输入格式
The only line of input contains two space-separated integers $p$ and $k$ ( $1<=p<=10^{18}$ , $2<=k<=2000$ ).
输出格式
If the polynomial does not exist, print a single integer -1, or output two lines otherwise.
In the first line print a non-negative integer $d$ — the number of coefficients in the polynomial.
In the second line print $d$ space-separated integers $a_{0},a_{1},...,a_{d-1}$ , describing a polynomial  fulfilling the given requirements. Your output should satisfy $0<=a_{i}<k$ for all $0<=i<=d-1$ , and $a_{d-1}≠0$ .
If there are many possible solutions, print any of them.
In the first line print a non-negative integer $d$ — the number of coefficients in the polynomial.
In the second line print $d$ space-separated integers $a_{0},a_{1},...,a_{d-1}$ , describing a polynomial  fulfilling the given requirements. Your output should satisfy $0<=a_{i}<k$ for all $0<=i<=d-1$ , and $a_{d-1}≠0$ .
If there are many possible solutions, print any of them.
输入输出样例
输入 #1
46 2
输出 #1
7 0 1 0 0 1 1 1
输入 #2
2018 214
输出 #2
3 92 205 1
In the first example, $f(x)=x^{6}+x^{5}+x^{4}+x=(x^{5}-x^{4}+3x^{3}-6x^{2}+12x-23)·(x+2)+46$ .
In the second example, $f(x)=x^{2}+205x+92=(x-9)·(x+214)+2018$ .
In the second example, $f(x)=x^{2}+205x+92=(x-9)·(x+214)+2018$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted