백준 16135번 : OBB(Oriented bounding box) / C++

2023. 6. 15. 01:25개인공부/코딩테스트

16135번: OBB(Oriented bounding box) (acmicpc.net)

 

16135번: OBB(Oriented bounding box)

안녕! 요즘 2차원 슈팅 게임을 만들고 있는데, 좀 어려운 부분이 생겼어. 플레이어가 적이 쏘는 총알에 맞으면 데미지를 입는 것을 구현하고 싶은데, 혹시 네가 도와줄 수 있니? 히트박스(실제

www.acmicpc.net


정말 오랜만에 백준문제를 해결했다 OBB 충돌문제로 개념에대해서 이해하면 쉽게 해결? 가능하다

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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#include <iostream>
#include <math.h>
#include <vector>
using namespace std;
 
struct Vector2
{
    float x;
    float y;
 
    Vector2 Nomalize()
    {
        float squarSum = sqrtf(x * x + y * y);
        if (squarSum == 1.f)
        {
            return *this;
        }
        else if (squarSum == 0.f)
        {
            return Vector2{ 0.f,0.f };
        }
        float invLength = 1 / sqrtf(squarSum);
 
        return Vector2{ x * invLength, y * invLength };
    }
    
    float Dot(Vector2 _other)
    {
        return x * _other.x + y * _other.y;
    }
};
 
int main()
{
    ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);
 
    Vector2 a[4];
    Vector2 b[4];
 
    for (int i = 0; i < 4++i)
    {
        cin >> a[i].x >> a[i].y;
    }
    for (int i = 0; i < 4++i)
    {
        cin >> b[i].x >> b[i].y;
    }
 
    // 사각형 중심좌표 계산
    Vector2 middleA = { (a[0].x + a[2].x) * 0.5f, (a[0].y + a[2].y) * 0.5f, };
    Vector2 middleB = { (b[0].x + b[2].x) * 0.5f, (b[0].y + b[2].y) * 0.5f, };
 
    Vector2 heightA{ (a[0].x - a[1].x) * 0.5f, (a[0].y - a[1].y) * 0.5f };
    Vector2 widthA{ (a[1].x - a[2].x) * 0.5f, (a[1].y - a[2].y) * 0.5f };
    Vector2 heightB{ (b[0].x - b[1].x) * 0.5f, (b[0].y - b[1].y) * 0.5f };
    Vector2 widthB{ (b[1].x - b[2].x) * 0.5f, (b[1].y - b[2].y) * 0.5f };
 
    Vector2 Distance{ middleB.x - middleA.x, middleB.y - middleA.y };
 
    vector<Vector2> basis{ heightA,widthA,heightB,widthB };
 
    for (int i = 0; i < 4++i)
    {
        Vector2 u = basis[i].Nomalize();
        
        float sum = 0.f;
        for (int j = 0; j < 4++j)
        {
            sum += abs(u.Dot(basis[j]));
        }
 
        float distance = abs(u.Dot(Distance));
 
        if (distance >= sum)
        {
            cout << "0";
            return 0;
        }
    }
 
    cout << "1";
 
 
    return 0;
}
cs

'개인공부 > 코딩테스트' 카테고리의 다른 글

17386번 : 선분 교차 1 /C++  (0) 2023.06.18
11758번 : CCW / C++  (0) 2023.06.18
백준 20040번: 사이클 게임 / C++  (0) 2023.04.03
백준 1717번: 집합의 표현 / C++  (0) 2023.04.03
백준 1450: 냅색문제 / C++  (0) 2023.04.03