博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
2019中山大学程序设计竞赛 Enlarge it(水题)
阅读量:6330 次
发布时间:2019-06-22

本文共 1444 字,大约阅读时间需要 4 分钟。

Problem Description
Taotao is glad to see that lots of students have registered for today's algorithm competition. Thus he wants to pull a banner on the wall. But Taotao is so stupid that he doesn't even know how to enlarge words to fit the size of banner. So Taotao gives you a slogan template and asked you to enlarge them in k times.
 

 

Input
There are multiple test cases.
For each test case, first line contains three numbers n, m, k (1<=n, m<=100,1<=k<=10).
The next n lines each contain m visible characters.
 

 

Output
For each test case, you should output k*n lines each contain k*m visible characters to represent the expanded slogan.
 

 

Sample Input
3 3 2
.*.
.*.
.*.
 

 

Sample Output
..**..
..**..
..**..
..**..
..**..
..**..
#include 
#include
#include
#include
#include
#include
#include
#include
using namespace std;#define ll long longconst int inf = 0x3f3f3f3f;const ll linf =1LL<<50;const int maxn = 1e5+8;const ll lmaxn = 2*1e9+8;const ll mod = 1000000007;int sign[10000+8];char a[100+8][100+8];int n, m, k;int main(){ while(~scanf("%d%d%d", &n, &m, &k) && (n+m+k)) { getchar(); int cnt = 0; for(int i = 1; i<=n; i++) { for(int j = 1; j<=m; j++) { scanf("%c", &a[i][j]); if(j>1 && a[i][j] != a[i][j-1]) { sign[cnt++] = j-1;// cout<
<

 

转载于:https://www.cnblogs.com/RootVount/p/10741494.html

你可能感兴趣的文章
python爬虫之微打赏(scrapy版)
查看>>
自制操作系统Antz day08——实现内核 (中) 扩展内核
查看>>
poj-1056-IMMEDIATE DECODABILITY(字典)
查看>>
阿里云容器Kubernetes监控(二) - 使用Grafana展现Pod监控数据
查看>>
区块链应用 | 不知道什么时候起,满世界都在谈区块链的事情
查看>>
小程序爆红 专家:对简单APP是巨大打击
查看>>
FarBox--另类有趣的网站服务【转】
查看>>
在非纯色背景上,叠加背景透明的BUTTON和STATIC_TEXT控件
查看>>
Distributed2:Linked Server Login 添加和删除
查看>>
海量数据处理相关面试问题
查看>>
Python-time
查看>>
Java中取两位小数
查看>>
RTX发送消息提醒实现以及注意事项
查看>>
使用 ftrace 调试 Linux 内核【转】
查看>>
唯一聚集索引上的唯一和非唯一非聚集索引
查看>>
Spark新愿景:让深度学习变得更加易于使用——见https://github.com/yahoo/TensorFlowOnSpark...
查看>>
linux磁盘配额
查看>>
新书上市:C#科学计算讲义
查看>>
NFS文件共享服务器的搭建
查看>>
%r 和 %s 该用哪个?
查看>>