当前位置:   article > 正文

华为OD机试真题-围棋的气_本题目只计算气,对于眼也按气计算,现在请根据输入黑棋和白棋的坐标位置,计算黑棋

本题目只计算气,对于眼也按气计算,现在请根据输入黑棋和白棋的坐标位置,计算黑棋

题目描述

围棋棋盘由纵横各19条线垂直相交组成,棋盘上一共19 x 19 = 361 个交点,对弈双方一方执白棋,一方执黑棋,落子时只能将棋子置于交点上。

“气”是围棋中很重要的一个概念,某个棋子有几口气,是指其上下左右方向四个相邻的交叉点中,有几个交叉点没有棋子,由此可知:

  1. 在棋盘的边缘上的棋子最多有 3 口气(黑1),在棋盘角点的棋子最多有2口气(黑2),其他情况最多有4口气(白1)
  2. 所有同色棋子的气之和叫做该色棋子的气,需要注意的是,同色棋子重合的气点,对于该颜色棋子来说,只能计算一次气,比如下图中,黑棋一共4口气,而不是5口气,因为黑1和黑2中间红色三角标出来的气是两个黑棋共有的,对于黑棋整体来说只能算一个气。
  3. 本题目只计算气,对于眼也按气计算,如果您不清楚“眼”的概念,可忽略,按照前面描述的规则计算即可。

现在,请根据输入的黑棋和白棋的坐标位置,计算黑棋和白起一共各有多少气?

输入描述:

输入包括两行数据,如:

0 5 8 9 9 10

5 0 9 9 9 8

1、每行数据以空格分隔,数据个数是2的整数倍,每两个数是一组,代表棋子在棋盘上的坐标;

2、坐标的原点在棋盘左上角点,第一个值是行号,范围从0到18;第二个值是列号,范围从0到18。

3、举例说明:第一行数据表示三个坐标(0,5)、(8,9)、(9,10)

4、第一行表示黑棋的坐标,第二行表示白棋的坐标。

5、题目保证输入两行数据,无空行且每行按前文要求是偶数个,每个坐标不会超出棋盘范围。

输出描述:

8 7

两个数字以空格分隔,第一个数代表黑棋的气数,第二个数代表白棋的气数。

示例 :

输入:

  1. 0 5 8 9 9 10
  2. 5 0 9 9 9 8

输出: 

8 7

说明:

如果将输入数据放到棋盘上,数数黑棋一共8口气:

数数白棋一共7口气:

题解:

  1. public class Test {
  2. static int maxSide = 18;
  3. public static void main(String[] args) {
  4. Scanner in = new Scanner(System.in);
  5. String[] locBlacks = in.nextLine().split(" ");
  6. String[] locWhites = in.nextLine().split(" ");
  7. String[] blacks = transform(locBlacks);
  8. String[] whites = transform(locWhites);
  9. System.out.println(counting(blacks, whites) + " " + counting(whites, blacks));
  10. }
  11. static int counting(String[] alias, String[] ememy) {
  12. Set<String> count = new HashSet<>();
  13. for (String a : alias) {
  14. count.add(a);
  15. String[] loc = a.split("_");
  16. int x = Integer.parseInt(loc[0]);
  17. int y = Integer.parseInt(loc[1]);
  18. if (x > 0) {
  19. count.add(Integer.toString(x - 1) + "_" + loc[1]);
  20. }
  21. if (x < maxSide) {
  22. count.add(Integer.toString(x + 1) + "_" + loc[1]);
  23. }
  24. if (y > 0) {
  25. count.add(loc[0] + "_" + Integer.toString(y - 1));
  26. }
  27. if (y < maxSide) {
  28. count.add(loc[0] + "_" + Integer.toString(y + 1));
  29. }
  30. }
  31. int res = count.size() - alias.length;
  32. for (String e : ememy) {
  33. if (count.contains(e)) {
  34. res--;
  35. }
  36. }
  37. return res;
  38. }
  39. static String[] transform(String[] locs) {
  40. String[] chess = new String[locs.length / 2];
  41. for (int i = 0; i < locs.length;) {
  42. chess[i / 2] = locs[i] + "_" + locs[i + 1];
  43. i += 2;
  44. }
  45. return chess;
  46. }
  47. }
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/642051
推荐阅读
相关标签
  

闽ICP备14008679号