赞
踩
围棋棋盘由纵横各19条线垂直相交组成,棋盘上一共19 x 19 = 361 个交点,对弈双方一方执白棋,一方执黑棋,落子时只能将棋子置于交点上。
“气”是围棋中很重要的一个概念,某个棋子有几口气,是指其上下左右方向四个相邻的交叉点中,有几个交叉点没有棋子,由此可知:
现在,请根据输入的黑棋和白棋的坐标位置,计算黑棋和白起一共各有多少气?
输入包括两行数据,如:
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
两个数字以空格分隔,第一个数代表黑棋的气数,第二个数代表白棋的气数。
输入:
0 5 8 9 9 10 5 0 9 9 9 8输出:
8 7
如果将输入数据放到棋盘上,数数黑棋一共8口气:
数数白棋一共7口气:
- public class Test {
-
- static int maxSide = 18;
-
- public static void main(String[] args) {
- Scanner in = new Scanner(System.in);
- String[] locBlacks = in.nextLine().split(" ");
- String[] locWhites = in.nextLine().split(" ");
- String[] blacks = transform(locBlacks);
- String[] whites = transform(locWhites);
- System.out.println(counting(blacks, whites) + " " + counting(whites, blacks));
- }
-
-
- static int counting(String[] alias, String[] ememy) {
- Set<String> count = new HashSet<>();
- for (String a : alias) {
- count.add(a);
- String[] loc = a.split("_");
- int x = Integer.parseInt(loc[0]);
- int y = Integer.parseInt(loc[1]);
- if (x > 0) {
- count.add(Integer.toString(x - 1) + "_" + loc[1]);
- }
- if (x < maxSide) {
- count.add(Integer.toString(x + 1) + "_" + loc[1]);
- }
- if (y > 0) {
- count.add(loc[0] + "_" + Integer.toString(y - 1));
- }
- if (y < maxSide) {
- count.add(loc[0] + "_" + Integer.toString(y + 1));
- }
- }
- int res = count.size() - alias.length;
- for (String e : ememy) {
- if (count.contains(e)) {
- res--;
- }
- }
- return res;
- }
-
- static String[] transform(String[] locs) {
- String[] chess = new String[locs.length / 2];
- for (int i = 0; i < locs.length;) {
- chess[i / 2] = locs[i] + "_" + locs[i + 1];
- i += 2;
- }
- return chess;
- }
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。