ZVRK函数
Posted godrose
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ZVRK函数相关的知识,希望对你有一定的参考价值。
题面:
思路:
代码:
#include<bits/stdc++.h> using namespace std; long long l,r,ans,x=1,n,f; int main(){ freopen("zvrk.in","r",stdin); freopen("zvrk.out","w",stdout); scanf("%lld%lld",&l,&r); l--; while(l){ f=l&1; l>>=1; ans-=x*(l+f); x<<=1; } x=1; while(r){ f=r&1; r>>=1; ans+=x*(r+f); x<<=1; } printf("%lld",ans); return 0; }
以上是关于ZVRK函数的主要内容,如果未能解决你的问题,请参考以下文章
在 Visual Studio 中创建构造函数的代码片段或快捷方式