Codeforces Round #462 (Div. 1) BA Determined Cleanup

Posted Visitor

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces Round #462 (Div. 1) BA Determined Cleanup相关的知识,希望对你有一定的参考价值。

【链接】 我是链接,点我呀:)
【题意】


在这里输入题意

【题解】


\(设f(x)=a_d*x^{d}+a_{d-1}*x^{d-1}+...+a_1*x+a_0\)
用它去除x+k
用多项式除法除一下就好。
会发现余数等于
\(∑_0^{d}(-k)^{i}*a_i\)
这是一个十进制数转成负k进制数的和的形式。
而p已知。
问题就转化为把十进制数p转成-k进制数的问题了。

【代码】

#include <bits/stdc++.h>
#define ll long long
using namespace std;

ll p,k;
vector<int> v;

int main(){
    #ifdef LOCAL_DEFINE
        freopen("rush_in.txt", "r", stdin);
    #endif
    ios::sync_with_stdio(0),cin.tie(0);
    cin >> p >> k;
    k = -k;
    while (p!=0){
        int x = p%k;
        p/=k;
        if (x<0) {
            x+=abs(k);
            p++;
        }
        v.push_back(x);
    }
    cout<<(int)v.size()<<endl;
    for (int x:v)
        cout<<x<<' ';
    return 0;
}

以上是关于Codeforces Round #462 (Div. 1) BA Determined Cleanup的主要内容,如果未能解决你的问题,请参考以下文章

Codeforces Round #462 (Div. 2) ----D

Codeforces Round #462 (Div. 1) BA Determined Cleanup

Codeforces Round #462 (Div. 1) A A Twisty Movement

Codeforces Round #436 E. Fire(背包dp+输出路径)

Codeforces Round #263 (Div. 2) D. Appleman and Tree 树形dp

[ACM]Codeforces Round #534 (Div. 2)