线性分类器

原题链接
本题需要注意按照官网的数据范围是可能爆int的,不过官网的数据比较水,int也给过,下面代码用了long来存。int最大值大约为2e9;

import java.util.Scanner;

public class Main {
	static Node[] nds;

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		nds = new Node[n];
		for (int i = 0; i < n; i++) {
			int x = sc.nextInt();
			int y = sc.nextInt();
			char type = sc.nextLine().trim().charAt(0);
			nds[i] = new Node(x, y, type);
		}
		for (int i = 0; i < m; i++) {
			int a, b, c;
			a = sc.nextInt();
			b = sc.nextInt();
			c = sc.nextInt();
			if (judge(a, b, c))
				System.out.println("Yes");
			else
				System.out.println("No");
		}
		sc.close();
	}

	private static boolean judge(int a, int b, int c) {
		boolean type = true;// A在上面
		if (a + b * nds[0].x + c * nds[0].y > 0) {
			if (nds[0].type == 'B')
				type = false;
		} else {
			if (nds[0].type == 'A')
				type = false;
		}
		for (int i = 1; i < nds.length; i++) {
			if (a + b * nds[i].x + c * nds[i].y > 0) {
				if(nds[i].type=='A'&&type)continue;
				if(nds[i].type=='B'&&!type)continue;
				return false;
			}else{
				if(nds[i].type=='B'&&type)continue;
				if(nds[i].type=='A'&&!type)continue;
				return false;
			}
		}
		return true;
	}

	static class Node {
		long x, y;
		char type;

		public Node(long x, long y, char type) {
			this.x = x;
			this.y = y;
			this.type = type;
		}
	}
}
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值