题目:

https://cn.vjudge.net/problem/1451310/origin

题意&思路:

纯粹模拟。

大体题意是这样的:

1、有人要在一个10-9<=x<=109,10-9<=y<=109,这么大的一张纸上去画图,而我们只需要打印输出最大为0<=x<=100,0<=y<=100范围内的图案就ok了。

2、如果s==0的话就在给出的坐标处画一个“_o_”( ASCII codes 95, 111, 95)的图案,表示a tree stump。

3、如果s>0的话,就在给出的坐标处画一个高度为s的a standing tree,这个standing tree 首先有一个root图案为:“_|_”,(ASCII codes 95, 124, 95),然后有s个“|”表示树干,最后在最高的树干上边的一个单元格中画一个“^” ASCII code 94)。

4、另一个需要注意的地方是,题目中的坐标表示为左下角为(0,0),右上角是(m-1,m-1),需要做一下下标的变换对应到数组中。

代码:

  1. #include <bits/stdc++.h>
  2. #define inf 0x3f3f3f3f
  3. using namespace std;
  4. typedef long long ll;
  5. const int maxn = ;
  6. int mp[maxn][maxn];
  7. int n,m;
  8.  
  9. void Dn(int x,int y,int id){
  10. if(x>= && x<m && y>= && y<m){//必须是在要输出的范围内才能画上图案
  11. mp[x][y] = id;
  12. }
  13. return;
  14. }
  15.  
  16. void print(){
  17. for(int i = ; i<m+; i++){
  18. printf("*");
  19. }
  20. printf("\n");
  21. for(int i = ; i<m; i++){
  22. for(int j = ; j<m; j++){
  23. if(j==)printf("*");
  24. printf("%c",mp[i][j]);
  25. if(j==m-)
  26. printf("*\n");
  27. }
  28. }
  29. for(int i = ; i<m+; i++){
  30. printf("*");
  31. }
  32. printf("\n\n");
  33. }
  34.  
  35. int main(){
  36. while(scanf("%d%d",&m,&n)!=EOF){
  37. for(int i = ; i<m; i++){
  38. for(int j = ; j<m; j++){
  39. mp[i][j] = ;
  40. }
  41. }
  42. int x,y,s;
  43. for(int kk = ; kk<n; kk++){
  44. scanf("%d%d%d",&s,&y,&x);//注意行和列的输入位置
  45. x = m-x-;//由题意的坐标变换到数组中的下标中
  46. if(s==){
  47. Dn(x,y,);//打印'o'
  48. Dn(x,y-,);//打印'_'
  49. Dn(x,y+,);//打印'_'
  50. }
  51. else if(s>){
  52. Dn(x,y,);//打印'|'
  53. Dn(x,y-,);//打印'_'
  54. Dn(x,y+,);//打印'_'
  55. for(int i=; i<=s; i++){
  56. Dn(x-i,y,);//打印'|'
  57. Dn(x-i,y-,);//打印'/'
  58. Dn(x-i,y+,);//打印'\'
  59. }
  60. Dn(x-s-,y,);//打印'^'
  61. }
  62. }
  63. print();
  64. }
  65. return ;
  66. }

Gym - 101670E Forest Picture (CTU Open Contest 2017 模拟)的更多相关文章

  1. Gym - 101670H Go Northwest!(CTU Open Contest 2017 思维题+map)

    题目: Go Northwest! is a game usually played in the park main hall when occasional rainy weather disco ...

  2. Gym - 101670A Amusement Anticipation(CTU Open Contest 2017 签到题)

    题目&题意: 倒着找处于最后位置的等差数列的开头的位置. 例: 1 5 3 4 5 6 3 4 5 6是等差数列,它的开头的位置是3 PS: 读题真的很重要!!!!多组输入,上来就读错了!! ...

  3. Gym - 101670F Shooting Gallery(CTU Open Contest 2017 区间dp)

    题目&题意:(有点难读...) 给出一个数字序列,找出一个区间,当删除这个区间中的两个相同的数字后,只保留这两个数字之间的序列,然后继续删除相同的数字,问最多可以实行多少次删除操作. 例如: ...

  4. Gym - 101670G Ice cream samples(CTU Open Contest 2017 尺取法)

    题目: To encourage visitors active movement among the attractions, a circular path with ice cream stan ...

  5. Gym - 101670H Dark Ride with Monsters(CTU Open Contest 2017 贪心)

    题目: A narrow gauge train drives the visitors through the sequence of chambers in the Dark Ride attra ...

  6. Gym - 101670C Chessboard Dancing(CTU Open Contest 2017 找规律)

    题目:链接 思路: 多画出几个情况就可以找出规律来了 Knight (当大于2的时候只要两种颜色相间出现就可以了) King(当大于等于3的时候,总可以用四种形式来补色,具体如下)  Bishop(斜 ...

  7. Gym - 101670B Pond Cascade(CTU Open Contest 2017 贪心,二分)

    题目: The cascade of water slides has been installed in the park recently and it has to be tested. The ...

  8. Gym - 101670J Punching Power(CTU Open Contest 2017 最大独立集)

    题目: The park management finally decided to install some popular boxing machines at various strategic ...

  9. CTU Open Contest 2017

    这场题很水.水题我就懒得贴了. B - Pond Cascade 优先队列维护这个水池需要多少时间 或者 直接扫一遍. #include <cstdio> #include <cst ...

随机推荐

  1. YTU 2677: 韩信点兵

    2677: 韩信点兵 时间限制: 1 Sec  内存限制: 128 MB 提交: 61  解决: 38 题目描述 刘邦问韩信:"你觉得我可以带兵多少?"韩信:"最多十万. ...

  2. javaSE基础(一)

    说明: 1)本系列专综合java SE 之基础概念!因为个人觉得,许多知识点的不理解来自于对各种名称与概念的定义的不理解. 2)其中的定义参考来自于Stuart Reges 和 Marty Stepp ...

  3. 开始学习java编程

    先看视屏,学习JAVA语法先,后面再看java web mvc,以及myeclipse http://i.youku.com/u/UMzM4MjMxNjMy/videos 争取20天内进步很大.

  4. pyhon-----安装yaml踩过的坑以及正解

    之前在网上找了各种资料,cmd安装yaml,网上大部分写的都是pip install yaml 可是,执行完就变成Could not find a version that satisfies the ...

  5. JVM系列-类加载机制

    简介 在java中,类的声明周期总共分为以下几种: 加载(Loading),验证(Verification),准备(Preparation),解析(Analysis), 初始化(Initializat ...

  6. Feature分支(转载)

    转自:http://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000/00137602623300 ...

  7. tfs

    安装Team Foundation Server 2012过程截图 专题图 1,下载Team Foundation Server 2012  官方下载: http://www.microsoft.co ...

  8. mysql的大数据量的查询

    mysql的大数据量查询分页应该用where 条件进行分页,limit 100000,100,mysql先查询100100数据量,查询完以后,将 这些100000数据量屏蔽去掉,用100的量,但是如果 ...

  9. Android内存管理(15)SparseArray系列代替HashMap系列

    参考: https://liuzhichao.com/p/832.html http://www.2cto.com/kf/201311/255640.html 1,简介: SparseArray是an ...

  10. rman 问题

    1. RMAN Repeatedly Fail To Backup Archivelogs with RMAN-20242 Cause: There is a mis-match between th ...