UVa213-Message Decoding

UVa213-Message Decoding

思路:

紫书上的题目刚开始没有把各个功能独立开来能想到的例子都过了但是提交就RE,卡了巨长时间最后无奈按照书上思路把各个功能独立出来,一边过。无奈

代码:

#include 

using namespace std;
char ve[8][1<<9+1];
char getcha()
{
    int ch;
    while(ch=getchar())
    {
        if(ch!='\n'&&ch!='\t') return ch;
    }
}
int getnum(int n)
{
    int num=0;
    while(n--) num=num*2+getcha()-'0';
    return num;
}
int gethead()
{
    char ch[100001];
    int k=0;
    memset(ve,0,sizeof(ve));
    if(scanf("%[^\n]",ch)==-1) return 0;
    for(int i=1;;i++)
    {
        for(int j=0;j<(1<1;j++,k++)
        {
            if(!ch[k]) return 1;
            ve[i][j]=ch[k];
        }
    }
    return 1;
}
int main()
{
    int n;
    while(gethead())
    {
        while(n=getnum(3),n)
        {
            int ans;
            while(1)
            {
                ans=getnum(n);
                if(ans==(1<1)break;
                printf("%c",ve[n][ans]);
            }
        }
        printf("\n");
        getchar();
    }
}

你可能感兴趣的:(ACM)