CF933B A Determined Cleanup

B. A Determined Cleanup
time limit per test1 second
memory limit per test256 megabytes
inputstandard input
outputstandard output
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).

Input
The only line of input contains two space-separated integers p and k (1 ≤ p ≤ 1018, 2 ≤ k ≤ 2 000).

Output
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 a0, a1, …, ad - 1, describing a polynomial fulfilling the given requirements. Your output should satisfy 0 ≤ ai < k for all 0 ≤ i ≤ d - 1, and ad - 1 ≠ 0.

If there are many possible solutions, print any of them.

Examples
inputCopy
46 2
output
7
0 1 0 0 1 1 1
inputCopy
2018 214
output
3
92 205 1
Note
In the first example, f(x) = x6 + x5 + x4 + x = (x5 - x4 + 3x3 - 6x2 + 12x - 23)·(x + 2) + 46.

In the second example, f(x) = x2 + 205x + 92 = (x - 9)·(x + 214) + 2018.

【题解】
我们可以对题目要求进行变形得: f(x)=kq(x)+xq(x)+p
我们设 f(x) 的的值为 d1i=0aixi , q(x) 的值为 d2i=0bixi 观察可知:

a0=kb0+p
a1=kb1+b0
a3=kb2+b1
ad2=kbd2+bd3
ad1=bd2

我们依次将 bd2bd3b1b0 往上代入,直至得到:
p=i=0d1(k)iai

那就相当于k进制转成10进制了,当然我们可以展开得:
p=a0a1k+a2k2a3k3

那就是不断取模咯,注意long long

#include<cstdio>
#define LL long long
LL p,k,cnt=0,ans[100000];
int main() {
    scanf("%lld%lld",&p,&k);
    while(p) {
        ans[cnt]=(p%k+k)%k;
        p=-(p-ans[cnt])/k;
        cnt++;
    }
    printf("%lld\n",cnt);
    for(int i=0; i<cnt; i++) {
        if(i)putchar(' ');
        printf("%lld",ans[i]);
    }
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值