题目1161:Repeater(规律输出图形)

Posted 伊甸一点

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了题目1161:Repeater(规律输出图形)相关的知识,希望对你有一定的参考价值。

题目1161:Repeater 题目链接:http://ac.jobdu.com/problem.php?pid=1161

 

具体分析:https://github.com/zpfbuaa/JobduInCPlusPlus

 

参考代码:

//
//  1161 Repeater.cpp
//  oj
//
//  Created by PengFei_Zheng on 05/04/2017.
//  Copyright © 2017 PengFei_Zheng. All rights reserved.
//
 
#include <stdio.h>
#include <iostream>
#include <algorithm>
#include <string.h>
#include <cstdio>
#include <stdlib.h>
#include <cmath>
 
using namespace std;
 
int n,q;
char buf[3001][3001];
char sample[3001][3001];
char board[6][6];
 
void init(int a, int b, int n){
    for(int i = 0 ; i < n ; i ++){
        for(int j = 0 ; j < n ; j ++){
            buf[a * n + i][b * n + j]= ;
        }
    }
}
 
void copy(int a, int b, int n){
    for(int i = 0 ; i < n ; i ++){
        for(int j = 0 ; j < n ; j++){
            buf[a * n + i][b * n + j] = sample[i][j];
        }
    }
}
 
void update(int n){
    for(int i = 0 ; i < n ; i ++){
        for(int j = 0 ; j < n ; j ++){
            sample[i][j]=buf[i][j];
        }
    }
}
 
int main(){
    while(scanf("%d",&n)!=EOF&&n!=0){
        getchar();
        for(int i = 0 ; i < n ; i ++){
            for(int j = 0 ; j < n ; j ++){
                scanf("%c",&buf[i][j]);
                board[i][j]=buf[i][j];
            }
            getchar();
        }
        scanf("%d",&q);
        int size = n ;
        for(int k = 2 ; k <= q ; k++){
            update(size);
            for(int i = 0 ; i < n ; i++){
                for(int j = 0; j < n ; j++){
                    if(board[i][j]== )
                        init(i,j,size);
                    else
                        copy(i,j,size);
                }
            }
            size = pow(n,k);
        }
        for(int i = 0 ; i < size ; i ++){
            for(int j = 0 ; j < size ; j ++){
                printf("%c",buf[i][j]);
            }
            cout<<endl;
        }
    }
    return 0;
}
 
/**************************************************************
    Problem: 1161
    User: zpfbuaa
    Language: C++
    Result: Accepted
    Time:210 ms
    Memory:19200 kb
****************************************************************/

 

以上是关于题目1161:Repeater(规律输出图形)的主要内容,如果未能解决你的问题,请参考以下文章

P1161 开灯

1161 字符串长度(指针专题)

1251: 字母图形 [水题]

ZZNUOJ_用C语言编写程序实现1161:循环移动(指针专题)(附完整源码)

[模拟] aw3663. 打印数字菱形(模拟+图形打印+曼哈顿距离+找规律)

51nod1161 Partial Sums