Cod sursa(job #2525712)

Utilizator hhhhhhhAndrei Boaca hhhhhhh Data 17 ianuarie 2020 18:14:04
Problema Aria Scor 100
Compilator cpp-64 Status done
Runda Arhiva educationala Marime 0.63 kb
#include <bits/stdc++.h>

using namespace std;
ifstream fin("aria.in");
ofstream fout("aria.out");
int n;
long double ans;
int x;
struct points
{
    long double x;
    long double y;
};
points v[100001];
long double aria(points a,points b,points c)
{
    a.x-=c.x;
    a.y-=c.y;
    b.x-=c.x;
    b.y-=c.y;
    return (a.x*b.y-a.y*b.x)/2;
}
int main()
{
    ios_base::sync_with_stdio(false);
    fin.tie(0);
    fout.tie(0);
    fin>>n;
    for(int i=1;i<=n;i++)
        fin>>v[i].x>>v[i].y;
    for(int i=1;i<=n-2;i++)
        ans+=aria(v[1],v[i+1],v[i+2]);
    fout<<fixed<<setprecision(6)<<ans;
    return 0;
}