zoj 2934 Persistent Bits

zoj 2934 Persistent Bits,第1张

zoj 2934 Persistent Bits
#include <cstdio>#include <cstring>int vis[1000000];int main(){    int str[47];    int a, b, c, s;    while(scanf("%d",&a))    {        if(a == 0) break;        scanf("%d%d%d",&b,&c,&s);        memset(vis,0,sizeof(vis));        int tt = s;        int l = 0;        while(tt)        { str[l++] = tt%2; tt/=2;        }        for(int i = l; l < 16; l++)        { str[i++] = 0;        }        tt = s;        while(!vis[tt])        { l = 0; vis[tt] = 1; int tm = tt; while(tm) {     if(str[l] != tm%2)     {         str[l] = 3;     }     tm/=2;     l++; } tt = (((a*tt)%c) + (b%c))%c ;        }        for(int i = 15; i >= 0; i--)        { if(str[i]!=3)     printf("%d",str[i]); else     printf("?");        }        printf("n");    }    return 0;}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4908794.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-12
下一篇 2022-11-12

发表评论

登录后才能评论

评论列表(0条)

保存