fuliangliang的Blog

合抱之木,生于毫末;九层之台,起于累土;千里之行,始于足下。

用户操作
[即时聊天] [发私信] [加为好友]
fuliangliangID:fuliangliang
65181次访问,排名1602(1)好友1人,关注者3
fuliangliang的文章
原创 100 篇
翻译 0 篇
转载 25 篇
评论 29 篇
fuliang的公告

我的联系方式:20542606

Email:fuliangliang@gmail.com


最近评论
topgunqq:条理清楚,简单易学.比网上其他例子要好一些.至少按照楼主写的过程,我这个初学者实验成功了!
marshluca:恭喜~~
请问有没rails 做的项目,比方blog?
marshluca@gmail.com
marshluca:恭喜~~
请问有没rails 做的项目,比方blog?
marshluca@gmail.com
chucai:写的非常的好,仔细的拜读了。思路很清晰。考虑的问题也比较全面。
tbsc3:我也遇到了这个问题,如果配1 M就有用,大于2M就还是默认的 不知道你有没有解决呀,教教我
文章分类
收藏
    相册
    净月潭一日游
    页面图片
    日历
    文章收藏
    我的JavaEye博客
    存档
    软件项目交易
    订阅我的博客
    XML聚合  FeedSky
    订阅到鲜果
    订阅到Google
    订阅到抓虾
    订阅到BlogLines
    订阅到Yahoo
    订阅到GouGou
    订阅到飞鸽
    订阅到Rojo
    订阅到newsgator
    订阅到netvibes

    原创 JOJ ACM 1149收藏

    新一篇: JOJ ACM 1184 | 旧一篇: JOJ ACM 1107

    Given a positive integer n, nd the positions of all 1's in its binary representation. The position of the least significant bit is 0.

     

    Example

    The positions of 1's in the binary representation of 13 are 0, 2, 3.

     

     

    Task

    Write a program which for each data set:

     

    reads a positive integer n,

    computes the positions of 1's in the binary representation of n,

    writes the result.

     

    Input

    The first line of the input contains exactly one positive integer d equal to the number of data sets, 1 <= d <= 10. The data sets follow.

    Each data set consists of exactly one line containing exactly one integer n, 1 <= n <= 10^6.

     

     

    Output

    The output should consists of exactly d lines, one line for each data set.

    Line i, 1 <= i <= d, should contain increasing sequence of integers separated by single spaces - the positions of 1's in the binary representation of the i-th input number.

     

    Sample Input

    1
    13
    

    Sample Output

    0 2 3
    
    code:
    #include<iostream>
    #include<vector>
    using namespace std;
    
    void main()
    {
    	int d,num;
    	cin>>d;
    	while(d!=0)
    	{
    	  vector<int> v;
               cin>>num;
    	  while(num!=0)
    	  {
                      v.push_back(num%2);
    		num/=2;
    	  }
    	  for(int i=0;i<v.size();i++)
    	  {
    		  if(v[i]==1)
    		  {
    		    if(i!=v.size()-1)
    		       cout<<i<<" ";
                           else
    		       cout<<i<<endl;
    		  }
    	  }
    	  d--;
    	}
    }
    

    发表于 @ 2006年01月17日 19:24:00|评论(loading...)|编辑

    新一篇: JOJ ACM 1184 | 旧一篇: JOJ ACM 1107

    评论:没有评论。

    发表评论  


    当前用户设置只有注册用户才能发表评论。如果你没有登录,请点击登录
    Csdn Blog version 3.1a
    Copyright © fuliang