[BOJ] 2166 다각형의 면적

Time Lapse :NONE

2166.cpp

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <iostream>
#include <cmath>
#include <algorithm>
#define ll long long
using namespace std;
long long area(pair<int, int> a, pair<int, int> b, pair<int, int> c) {
return (ll)(b.first - a.first) * (c.second - a.second) - (ll)(c.first - a.first) * (b.second - a.second);
}
int main() {
int n;
pair<int, int> a, b, c;
scanf("%d",&n);
n-=2;
ll ans = 0;
scanf("%d %d %d %d",&a.first,&a.second, &b.first, &b.second);
for(int i = 0; i < n; i++) {
scanf("%d %d",&c.first, &c.second);
ans += area(a,b,c);
b = c;
}
ans = abs(ans);
printf("%lld.%d",ans/2,ans%2 ? 5 : 0);
}
Author: Song Hayoung
Link: https://songhayoung.github.io/2020/09/03/PS/BOJ/2166/
Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.