mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 06:18:48 +00:00
33 lines
554 B
C++
33 lines
554 B
C++
#include <iostream>
|
|
|
|
using std::cin;
|
|
using std::cout;
|
|
const char endl = '\n';
|
|
|
|
const int N = 5e4 + 5;
|
|
|
|
int n;
|
|
long long ans;
|
|
std::pair<int, int> p[N];
|
|
|
|
int main() {
|
|
std::ios::sync_with_stdio(false);
|
|
cin.tie(nullptr);
|
|
|
|
cin >> n;
|
|
|
|
for (int i = 1; i <= n; i++) {
|
|
cin >> p[i].first >> p[i].second;
|
|
}
|
|
|
|
for (int i = 1; i <= n; i++) {
|
|
for (int j = 1; j < i; j++) {
|
|
ans += 1ll * std::max(p[i].first, p[j].first) * std::abs(p[i].second - p[j].second);
|
|
}
|
|
}
|
|
|
|
cout << ans << endl;
|
|
|
|
return 0;
|
|
}
|