Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 프로그래머스
- UE5
- DeferredRendering
- algorithm
- Programmers
- UnrealEngine5
- C++
- 팰린드롬 만들기
- 2294
- RVO
- winapi
- C
- softeer
- directx
- RootMotion
- 티스토리챌린지
- UnrealEngine4
- 1563
- GeeksForGeeks
- 언리얼엔진5
- Frustum
- baekjoon
- IFileDialog
- NRVO
- 백준
- const
- DirectX11
- Unreal Engine5
- 오블완
- 줄 세우기
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 2477번 :: 참외밭 본문
https://www.acmicpc.net/problem/2477
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
|
#include <iostream>
#include <string>
#include <map>
#include <vector>
#include <algorithm>
#include <math.h>
#include <queue>
#include <functional>
#include <memory.h>
#include <deque>
#include <set>
#include <unordered_map>
#include <stack>
#include <numeric>
using namespace std;
int k, a, b;
int counts[8] = { 0 };
vector<pair<int, int>> lines;
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
cin >> k;
int firstMaxIndex = -1;
int secondMaxIndex = -1;
for (int i = 0; i < 6; ++i)
{
cin >> a >> b;
lines.push_back({ a,b });
++counts[a];
}
for (int i = 0; i < 6; ++i)
{
int count = counts[lines[i].first];
if (count == 1)
{
if (firstMaxIndex == -1)
{
firstMaxIndex = i;
}
else
{
secondMaxIndex = i;
break;
}
}
}
int maxArea = lines[firstMaxIndex].second * lines[secondMaxIndex].second;
if (firstMaxIndex + 1 != secondMaxIndex)
{
int temp = secondMaxIndex;
secondMaxIndex = firstMaxIndex;
firstMaxIndex = temp;
}
int nextIndex = (secondMaxIndex + 1) % 6;
int minLineA = lines[firstMaxIndex].second - lines[nextIndex].second;
int minLineB = lines[(nextIndex + 1) % 6].second;
int minArea = minLineA * minLineB;
cout << (maxArea - minArea) * k;
}
|
cs |
육각형의 면적을 구하는 문제. 전체 큰 사각형에서 뺴야될 작은사각형넓이를 빼서 구했다.
전체 큰사각형을 이루는 변에대한 정보(동서남북알려주는 정보)는 한번씩만 나온다는거에 착안해서 작성해봤다.
다른사람코드보니까 찾은 규칙마다 훨씬 간결하게 작성하는것도 가능해보인다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 1029번 :: 그림교환 (1) | 2024.06.09 |
---|---|
[Algorithm]Baekjoon 2166번 :: 다각형의 면적 (1) | 2024.06.09 |
[Algorithm]Baekjoon 1004번 :: 어린 왕자 (1) | 2024.06.09 |
[Algorithm]Baekjoon 12849번 :: 본대 산책 (1) | 2024.06.06 |
[Algorithm]Baekjoon 1002번 :: 터렛 (0) | 2024.06.05 |