제출 #938159

#제출 시각아이디문제언어결과실행 시간메모리
938159LittleOrangeCoin Collecting (JOI19_ho_t4)C++17
0 / 100
0 ms348 KiB
#include<bits/stdc++.h>
using namespace std;
using ll = long long;
struct pos{
    ll x,y;
    bool operator<(const pos &o) const{
        return x!=o.x?x<o.x:y>o.y;
    }
};
int main(){
    ios::sync_with_stdio(0);cin.tie(0);
    ll n;
    cin >> n;
    vector<pos> a(n*2);
    for(pos &o : a) cin >> o.x >> o.y;
    sort(a.begin(),a.end());
    ll ans = 0;
    for(ll i = 0;i<n;i++){
        pos u = a[i<<1],v = a[i<<1|1];
        ans += abs((i+1)-u.x)+abs((i+1)-v.x);
        ans += abs(max(u.y,v.y)-2)+abs(min(u.y,v.y)-1);
    }
    cout << ans << "\n";
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...