201409-2 画图 Java

Posted 鱼の家

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了201409-2 画图 Java相关的知识,希望对你有一定的参考价值。

思路:
法1:计算每个矩形的小方块,去掉重复的
法2:二维数组,需要涂色就置flag为1,最后遍历输出,不会有重复计算

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		boolean [][] flag = new boolean[105][105];
		int count = 0;
		for(int i=0;i<n;i++) {
			int x1 = sc.nextInt();
			int y1 = sc.nextInt();
			int x2 = sc.nextInt();
			int y2 = sc.nextInt();
			//矩形全部涂色
			for(int j=y1;j<y2;j++) {
				for(int k=x1;k<x2;k++) {
					flag[j][k] = true;
				}
			}
		}
		for(int i=0;i<flag.length;i++) {//遍历全部行数
			for(int j=0;j<flag[i].length;j++) {//遍历全部列数
				if(flag[i][j]) {//只会算一次
					count++;
				}
			}
		}
		sc.close();
		System.out.println(count);
	}

}

以上是关于201409-2 画图 Java的主要内容,如果未能解决你的问题,请参考以下文章

CCF CSP 201409-2 画图

CCF_ 201409-2_画图

CCF认证真题-(201409-2)-画图(暴力)

CSP201409-2:画图

CCF201409-2 画图

201409-2 画图