結果

問題 No.1447 Greedy MtSaka
ユーザー boutarouboutarou
提出日時 2021-03-31 14:14:01
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 612 bytes
コンパイル時間 1,985 ms
コンパイル使用メモリ 194,236 KB
最終ジャッジ日時 2025-01-20 01:21:55
ジャッジサーバーID
(参考情報)
judge5 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for(int i = 0; i < int(n); i++)
using ll = long long;
using P = pair<int, int>;

ll calc(ll a, ll b, ll c, ll d, ll e, ll f) {
    ll A = c - a, B = d - b, C = e - a, D = f - b;
    return abs(A * D - B * C);
}

int main() {
    cin.tie(0);
    ios_base::sync_with_stdio(false);

    int n;
    cin >> n;
    vector<ll> x(n), y(n);
    rep(i, n) {
        cin >> x[i] >> y[i];
    }
    ll ans = 0;
    for(int i = 1; i < n - 1; i++) {
        ans += calc(x[0], y[0], x[i], y[i], x[i + 1], y[i + 1]);
    }
    cout << ans << endl;
    return 0;
}
0