题目 3180: 蓝桥杯2023年第十四届省赛真题-棋盘

题目 3180: 蓝桥杯2023年第十四届省赛真题-棋盘

题目描述
小蓝拥有 n × n 大小的棋盘,一开始棋盘上全都是白子。小蓝进行了 m 次操作,
每次操作会将棋盘上某个范围内的所有棋子的颜色取反 (也就是白色棋子变为黑色,黑色棋子变为白色)。
请输出所有操作做完后棋盘上每个棋子的颜色。

解题思路
循环即可

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int m = sc.nextInt();
        sc.nextLine();
        int[][] arr = new int[n][n];
        // 棋子颜色,避免弄混了
        int white = 0;
        int black = 1;
        // 行和列坐标
        int x1, y1, x2, y2;
        int t;
        for (int i = 0; i < m; i++) {
            x1 = sc.nextInt()-1;
            y1 = sc.nextInt()-1;
            x2 = sc.nextInt()-1;
            y2 = sc.nextInt()-1;
            sc.nextLine();
            for (int j = x1; j <= x2; j++) {
                for (int k = y1; k <= y2; k++) {
                    t = arr[j][k];
                    t = (t == white) ? black : white;
                    arr[j][k] = t;
                }
            }
        }

		// 打印二维数组
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < n; j++) {
                System.out.print(arr[i][j]);
            }
            System.out.println();
        }
    }
}

你可能感兴趣的:(蓝桥杯刷题,蓝桥杯)