ecnu 2951 Bit operation
Posted taming
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ecnu 2951 Bit operation相关的知识,希望对你有一定的参考价值。
#include<bits/stdc++.h> using namespace std; const unsigned int u=2147483648; int main(){ unsigned int n; int m; cin>>n>>m; while(m--){ if(n&1)n=(n>>1)|u; else n>>=1; } cout<<n; }
以上是关于ecnu 2951 Bit operation的主要内容,如果未能解决你的问题,请参考以下文章
CF339D Xenia and Bit Operations(线段树)
Bit Operation (Message Compression/Decompression)