题目链接

题意 : 一个10×15的格子,有三种颜色的球,颜色相同且在同一片内的球叫做cluster(具体解释就是,两个球颜色相同且一个球可以通过上下左右到达另一个球,则这两个球属于同一个cluster,同时cluster含有至少两个球),每次选择cluster中包含同色球最多的进行消除,每次消除完之后,上边的要往下移填满空的地方,一列上的球移动之前与之后相对位置不变,如果有空列,右边的列往左移动,每一列相对位置不变 。

思路 : 模拟。。。。。。不停的递归。。。。。

  1. ////POJ 1027
  2. #include <iostream>
  3. #include <string>
  4. #include <cstdio>
  5. #include <cstring>
  6. using namespace std;
  7. int tmp,ans,tot,sum,k,xx,yy;
  8. //tmp:cluster中同色球的个数,ans:每次要消除的球的个数,tot:当前图中剩的总的有颜色的球,sum,分值,k:步数,xx,yy指的是要消除的cluster是从该点开始的
  9. bool v[][];
  10. string a[];
  11. char ch;
  12. int dx[] = {,,,-};
  13. int dy[] = {,,-,};
  14. void remov(int x,int y)//递归消除掉同色的
  15. {
  16. char c = a[x][y];
  17. a[x][y] = '';
  18. for (int i = ; i < ; i++)
  19. {
  20. int xx = x + dx[i];
  21. int yy = y + dy[i];
  22. if (xx >= && yy >= && xx < && yy < && a[xx][yy] == c)
  23. remov(xx,yy);
  24. }
  25. }
  26. void cluster(int x,int y)
  27. {
  28. tmp++;
  29. v[x][y] = ;
  30. for (int k = ; k < ; k++)
  31. {
  32. int xx = x + dx[k];
  33. int yy = y + dy[k];
  34. if (xx >= && yy >= && xx < && yy < && !v[xx][yy] && a[xx][yy]==a[x][y])
  35. cluster(xx,yy);
  36. }
  37. }
  38. int Find()
  39. {
  40. int maxx = ;
  41. memset(v,,sizeof(v));
  42. for (int j = ; j < ; j++)
  43. for (int i = ; i < ; i++)
  44. if (!v[i][j] && a[i][j]!='')
  45. {
  46. tmp = ;
  47. cluster(i,j);
  48. if (tmp > maxx)
  49. {
  50. maxx = tmp;
  51. ch = a[xx = i][yy = j];
  52. }
  53. }
  54. return maxx;
  55. }
  56. void fresh()
  57. {
  58. for (int j = ; j < ; j++)
  59. {
  60. int cnt = ;
  61. for (int i = ; i < ; i++)
  62. if (a[i][j] == '') cnt++;
  63. for (int i = ; i < -cnt ; i++)
  64. while (a[i][j]=='')//因为是倒着输入的,所以换不是往上换
  65. {
  66. int c = i;
  67. while (c != )
  68. {
  69. swap(a[c][j],a[c+][j]);
  70. c++;
  71. }
  72. }
  73. }
  74. int vis1[],tmpx = ;
  75. memset(vis1,,sizeof(vis1));
  76. for (int j = ; j < ; j++)//找空列
  77. {
  78. int cnt = ;
  79. for (int i = ; i < ; i++)
  80. if (a[i][j] == '') cnt++;
  81. if (cnt == )
  82. {
  83. vis1[j] = ;
  84. tmpx++;
  85. }
  86. }
  87. for (int j = ; j < -tmpx ; j++)
  88. while (vis1[j] == )
  89. {
  90. int c = j;
  91. while (c != )
  92. {
  93. for (int i = ; i < ; i++)
  94. swap(a[i][c],a[i][c+]);
  95. swap(vis1[c],vis1[c+]);
  96. c++;
  97. }
  98. }
  99. }
  100. int main()
  101. {
  102. int T ,casee = ;
  103. scanf("%d",&T);
  104. while(T--)
  105. {
  106. for (int i=; i>=; i--)
  107. cin >> a[i];
  108. printf("Game %d:\n\n",casee ++);
  109. tot = ;
  110. k = ;
  111. sum = ;
  112. while ()
  113. {
  114. ans = Find();
  115. if (ans <= ) break;
  116. printf("Move %d at (%d,%d): removed %d balls of color %c, got %d points.\n",
  117. k++,xx+,yy+,ans,ch,(ans-)*(ans-));
  118. tot -= ans;
  119. sum += (ans-)*(ans-);
  120. remov(xx,yy);
  121. fresh();
  122. }
  123. if (tot == ) sum += ;
  124. printf("Final score: %d, with %d balls remaining.\n\n",sum,tot);
  125. }
  126. return ;
  127. }

POJ 1027 The Same Game(模拟)的更多相关文章

  1. POJ 1027:The Same Game 较(chao)为(ji)复(ma)杂(fan)的模拟

    The Same Game Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 5168   Accepted: 1944 Des ...

  2. poj 1008:Maya Calendar(模拟题,玛雅日历转换)

    Maya Calendar Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 64795   Accepted: 19978 D ...

  3. POJ 3414 Pots【bfs模拟倒水问题】

    链接: http://poj.org/problem?id=3414 http://acm.hust.edu.cn/vjudge/contest/view.action?cid=22009#probl ...

  4. poj 2632 Crashing Robots(模拟)

    链接:poj 2632 题意:在n*m的房间有num个机器,它们的坐标和方向已知,现给定一些指令及机器k运行的次数, L代表机器方向向左旋转90°,R代表机器方向向右旋转90°,F表示前进,每次前进一 ...

  5. poj 1028 Web Navigation(模拟)

    题目链接:http://poj.org/problem? id=1028 Description Standard web browsers contain features to move back ...

  6. POJ 3087 Shuffle'm Up (模拟+map)

    题目链接:http://poj.org/problem?id=3087 题目大意:已知两堆牌s1和s2的初始状态, 其牌数均为c,按给定规则能将他们相互交叉组合成一堆牌s12,再将s12的最底下的c块 ...

  7. POJ 1068 Parencodings【水模拟--数括号】

    链接: http://poj.org/problem?id=1068 http://acm.hust.edu.cn/vjudge/contest/view.action?cid=27454#probl ...

  8. POJ 3672 Long Distance Racing (模拟)

    题意:给定一串字符,u表示是上坡,d表示下坡,f表示平坦的,每个有不同的花费时间,问你从开始走,最远能走到. 析:直接模拟就好了,没什么可说的,就是记下时间时要记双倍的,因为要返回来的. 代码如下: ...

  9. poj 1696 Space Ant(模拟+叉积)

    Space Ant Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 3840   Accepted: 2397 Descrip ...

随机推荐

  1. OpenGL完整实例

    结合上一节的内容,分享完整代码. 先画一个cube,然后通过OnGestureListener去触发onFling使它旋转起来. OnGestureListener相关的方法我已经都加了注释,可以参考 ...

  2. Golang之AES/DES加密解密

    AES/DES加密/解密涉及4个概念:1. Block, 也叫分组, 相应加密/解密的算法. 2. BlockMode, 模式, 相应加密/解密的处理.3. InitalVectory, 初始向量4. ...

  3. Python修饰器的函数式编程

    Python的修饰器的英文名叫Decorator,当你看到这个英文名的时候,你可能会把其跟Design Pattern里的Decorator搞混了,其实这是完全不同的两个东西.虽然好像,他们要干的事都 ...

  4. 自定义Drawable

    本文由 伯乐在线 - treesouth 翻译,toolate 校稿.未经许可,禁止转载! 英文出处:ryanharter.com.欢迎加入翻译小组. 我们看过一些博客文章,讲述了为什么要适时地使用自 ...

  5. ios多线程和进程的区别(转载)

    很想写点关于多进程和多线程的东西,我确实很爱他们.但是每每想动手写点关于他们的东西,却总是求全心理作祟,始终动不了手. 今天终于下了决心,写点东西,以后可以再修修补补也无妨. 一.为何需要多进程(或者 ...

  6. [转]What’s Behind Ericsson’s OpenWebRTC Project?

    [转]What’s Behind Ericsson’s OpenWebRTC Project? http://www.tuicool.com/articles/z6rAVrJ Ericsson’s O ...

  7. 微信支付.NET版开发总结(JS API),好多坑,适当精简。

    前2天,做一个手机网页的微信支付的项目,费了好些周折,记录一下.接下来,按照开发步骤,细数一下,我遇到的那些坑. [坑1]官方邮件中下载的demo只有PHP版本,其他版本没有给链接.可能让人误以为只有 ...

  8. java数据结构和算法------合并排序

      package iYou.neugle.sort; public class Merge_sort { public static void MergeSort(double[] array, i ...

  9. mozilla css developer center

    https://developer.mozilla.org/en-US/docs/Web/CSS

  10. STL之map

    参见http://www.cplusplus.com/reference/map/map/ template < class Key,                               ...