首页 > 其他 > 详细

hdoj 3784 继续xxx定律

时间:2014-08-21 11:37:54      阅读:216      评论:0      收藏:0      [点我收藏+]

xxx定律快要忘了

代码:

#include <stdio.h>
#include <string.h>
#define M 3000005
int a[M];
bool vis[M];
int temp[M];
int main()
{
    int n;
    while(scanf("%d", &n), n){
        int i, j;
        for(i = 0; i < n; i ++){
            scanf("%d", &a[i]);
        }
        memset(vis, 0, sizeof(vis));
        for(i = 0; i < n; i ++){
            if(vis[a[i]]) continue;
            int tem = a[i];
            while(tem != 1){
                if(tem%2 == 0) tem /=2;
                else tem = (tem*3+1)/2;
                if(tem < 1001)
                vis[tem] = 1;
            }
        }
        for(i = n-1, j = 0; i >= 0; i --){
            if(vis[a[i]] == 0) temp[j++] = a[i];
        }
        printf("%d", temp[0]);
        for(i = 1; i < j; i ++) printf(" %d", temp[i]);
        printf("\n");
    }
}

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3784

hdoj 3784 继续xxx定律,布布扣,bubuko.com

hdoj 3784 继续xxx定律

原文:http://blog.csdn.net/shengweisong/article/details/38711621

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!