202006-1 线性分类器
【摘要】
202006-1 线性分类器
C++总结
本题链接:202006-1 线性分类器
本博客给出本题截图:
C++
#include <iostream>
#includ...
本题链接:202006-1 线性分类器
本博客给出本题截图:
C++
#include <iostream>
#include <cstring>
#include <algorithm>
using namespace std;
typedef long long LL;
const int N = 1010;
int n, m;
struct Point
{
LL x, y;
char z;
}q[N];
int get(int a, int b, int c, char z)
{
int s = 0;
for (int i = 0; i < n; i ++ )
if (q[i].z == z)
if (a + b * q[i].x + c * q[i].y > 0) s |= 1;
else s |= 2;
return s;
}
bool check(int a, int b, int c)
{
int s1 = get(a, b, c, 'A'), s2 = get(a, b, c, 'B');
if (s1 == 3 || s2 == 3) return false;
if (s1 & s2) return false;
return true;
}
int main()
{
cin >> n >> m;
for (int i = 0; i < n; i ++ ) cin >> q[i].x >> q[i].y >> q[i].z;
while (m -- )
{
int a, b, c;
cin >> a >> b >> c;
if (check(a, b, c)) puts("Yes");
else puts("No");
}
return 0;
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
总结
利用二进制去解题,比较方便理解
位运算
文章来源: chen-ac.blog.csdn.net,作者:辰chen,版权归原作者所有,如需转载,请联系作者。
原文链接:chen-ac.blog.csdn.net/article/details/120260412
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)