hdu 5491 思维题
Posted polya
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hdu 5491 思维题相关的知识,希望对你有一定的参考价值。
#include<stdio.h> #include <math.h> #include <algorithm> #include <math.h> #include <string.h> #include <bitset> #include <iostream> using namespace std; #define LL long long void out(LL x) { bitset<32>s(x); cout<<s<<endl; } #define cal(x) __builtin_popcountll(x) int main() { freopen("in.txt","r",stdin); int t=1; scanf("%d",&t); for(int ca=1;ca<=t;ca++) { LL d,s1,s2; scanf("%lld%lld%lld",&d,&s1,&s2); d++; while(cal(d)<s1||cal(d)>s2) { for(int i=0;cal(d)<s1;i++) { d|=1ll<<i; //1的数目小就让低位为1 } for(int i=0;cal(d)>s2;i++) { if(d&(1ll<<i)) d+=1ll<<i;//1的数目多就让其进位为0 } } printf("Case #%d: %lld ",ca,d); } return 0; }
以上是关于hdu 5491 思维题的主要内容,如果未能解决你的问题,请参考以下文章
贪心模拟HDU 5491 The Next (2015 ACM/ICPC Asia Regional Hefei Online)