1. 程式人生 > >洛谷P1582 倒水 二進制 lowbit __builtin_popcount

洛谷P1582 倒水 二進制 lowbit __builtin_popcount

pair using name 給定 assert 增加 set har problem

P1582 倒水:https://www.luogu.org/problemnew/show/P1582

題意:

  給定n瓶裝有1升的水瓶,每次可以把兩瓶裝水量相同的水和成一瓶,問最少還要增加幾瓶裝有1升的水瓶,使得最後裝水的瓶子減少為k瓶以下。

思路:

  這道題沒想到用到了二進制,最後水瓶中的容量一定是2的指數次,利用lowbit函數可以知道一個數加到2的某個指數次需要多少個數。每次我們就給n加上lowbit(n),如果n在二進制表示中,1的總個數小於k,則加夠了。這個計數也可以用lowbit(),或者直接用內置函數__builtin_popcount(n)/

技術分享圖片
#include <algorithm>
#include  
<iterator> #include <iostream> #include <cstring> #include <cstdlib> #include <iomanip> #include <bitset> #include <cctype> #include <cstdio> #include <string> #include <vector> #include <stack> #include
<cmath> #include <queue> #include <list> #include <map> #include <set> #include <cassert> using namespace std; //#pragma GCC optimize(3) //#pragma comment(linker, "/STACK:102400000,102400000") //c++ #define lson (l , mid , rt << 1) #define rson (mid + 1 , r , rt << 1 | 1) #define
debug(x) cerr << #x << " = " << x << "\n"; #define pb push_back #define pq priority_queue typedef long long ll; typedef unsigned long long ull; typedef pair<ll ,ll > pll; typedef pair<int ,int > pii; typedef pair<int,pii> p3; //priority_queue<int> q;//這是一個大根堆q //priority_queue<int,vector<int>,greater<int> >q;//這是一個小根堆q #define fi first #define se second //#define endl ‘\n‘ #define OKC ios::sync_with_stdio(false);cin.tie(0) #define FT(A,B,C) for(int A=B;A <= C;++A) //用來壓行 #define REP(i , j , k) for(int i = j ; i < k ; ++i) //priority_queue<int ,vector<int>, greater<int> >que; const ll mos = 0x7FFFFFFF; //2147483647 const ll nmos = 0x80000000; //-2147483648 const int inf = 0x3f3f3f3f; const ll inff = 0x3f3f3f3f3f3f3f3f; //18 const int mod = 1e9+7; const double esp = 1e-8; const double PI=acos(-1.0); template<typename T> inline T read(T&x){ x=0;int f=0;char ch=getchar(); while (ch<0||ch>9) f|=(ch==-),ch=getchar(); while (ch>=0&&ch<=9) x=x*10+ch-0,ch=getchar(); return x=f?-x:x; } /*-----------------------showtime----------------------*/ int cnt(int x){ int sum = 0; while(x > 0){ x-=x&(-x); sum++; } return sum; } int main(){ int n,k,ans = 0; scanf("%d%d", &n, &k); // while(__builtin_popcount(n)>k){ while(cnt(n) > k){ ans += n & (-n); n += n&(-n); } printf("%d\n",ans); return 0; }
P1582

洛谷P1582 倒水 二進制 lowbit __builtin_popcount