uva 297 - Quadtrees

四叉树,p代表后面4个字符代表下面四个子结点的状态,f则为黑,e则为白。

题目中说深度不超过5层,不知道算了根结点没,我觉得按照32*32应该是6层。

我的方法是不管如果是f和e则将它下面的结点(假象存在)全部标记,最后两个相加的时候只用判断是否有任意一个这个点为黑即可。

若为p则判断下一个字符。

#include<cstdio>
#include<cstring>
const int MAXN=3000;
char a[MAXN];
bool b[2][MAXN];
int i,n;
void tree(int depth,char c,int cnt){
    if(depth==6){
        if(c=='f') b[cnt][n]=true;
        else b[cnt][n]=false;
        n++;
        return ;
    }
    else{
        if(c=='f'){
            for(int j=0;j<4;j++)
            tree(depth+1,c,cnt);
        }
        else if(c=='e'){
            for(int j=0;j<4;j++)
            tree(depth+1,c,cnt);
        }
        else if(c=='p'){
            for(int j=0;j<4;j++)
            {i++;tree(depth+1,a[i],cnt);}
        }
    }
}
int main(){
    //freopen("in.txt","r",stdin);
    //freopen("out.txt","w",stdout);
    int T;
    scanf("%d",&T);
    getchar();
    while(T--){
        memset(b,false,sizeof(b));
        gets(a);n=0;i=0;
        tree(1,a[0],0);
        gets(a);n=0;i=0;
        tree(1,a[0],1);
        int ans=0;
        for(int j=0;j<n;j++){
            if(b[0][j] || b[1][j]) ans+=1;
        }
        printf("There are %d black pixels.\n",ans);
    }
    return 0;
}

 

遇到f和e直接算出来,不用递归的,不过这个为啥还慢些。。。

#include<cstdio>
#include<cstring>
#include<cmath>
const int MAXN=3000+10;
char a[MAXN];
bool b[2][MAXN];
int i,n;
void tree(int depth,char c,int cnt){
    if(c=='f'){
        int temp=pow(4,6-depth);
        for(int j=0;j<temp;j++){
            b[cnt][n]=true;
            n++;
        }
        return ;
    }
    else if(c=='e'){
        int temp=pow(4,6-depth);
        for(int j=0;j<temp;j++){
            b[cnt][n]=false;
            n++;
        }
        return ;
    }
    else if(c=='p'){
        for(int j=0;j<4;j++)
        {i++;tree(depth+1,a[i],cnt);}
    }
}
int main(){
    //freopen("in.txt","r",stdin);
    //freopen("out.txt","w",stdout);
    int T;
    scanf("%d",&T);
    getchar();
    while(T--){
        memset(b,false,sizeof(b));
        gets(a);n=0;i=0;
        tree(1,a[0],0);
        gets(a);n=0;i=0;
        tree(1,a[0],1);
        int ans=0;
        for(int j=0;j<n;j++){
            if(b[0][j] || b[1][j]) ans+=1;
        }
        printf("There are %d black pixels.\n",ans);
    }
    return 0;
}


 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值