ABC216 C - Many Balls(思维)

Posted live4m

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ABC216 C - Many Balls(思维)相关的知识,希望对你有一定的参考价值。

题意:

解法:

从n开始,如果n是奇数,那么最后一步操作一定是A,然后将n-=1,
如果n是偶数,那么最后一步操作一定是B,然后将n/=2.

将操作丢入堆中,最后依次输出即可.

复杂度O(log).

code:

#include<bits/stdc++.h>
#define int long long
using namespace std;
void solve(){
    int n;cin>>n;
    stack<char>ans;
    while(n){
        if(n&1)n--,ans.push('A');
        else n/=2,ans.push('B');
    }
    while(ans.size()){
        cout<<ans.top();ans.pop();
    }
}
signed main(){
    #ifndef ONLINE_JUDGE
    freopen("in.txt","r",stdin);
    #endif // ONLINE_JUDGE
    ios::sync_with_stdio(0);cin.tie(0);
    solve();
    return 0;
}

以上是关于ABC216 C - Many Balls(思维)的主要内容,如果未能解决你的问题,请参考以下文章

AtCoder Beginner Contest 216 D - Pair of Balls 大模拟

Codeforces 755 G. PolandBall and Many Other Balls

A. Boboniu Likes to Color Balls1000 / 思维

cf755GG. PolandBall and Many Other Balls(dp+生成函数+倍增)

ABC 261 F - Sorting Color Balls(逆序对)

ABC 261 F - Sorting Color Balls(逆序对)