#include <bits/stdc++.h>
#define pb push_back
#define f first
#define sc second
using namespace std;
typedef long long int ll;
typedef string str;
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
int n; cin >> n;
vector<vector<int>> v(2, vector<int>(n, 0));
ll ans = 0;
for(int i = 0; i < 2*n; i++){
ll x, y; cin >> x >> y;
if(x > n) ans+=x-n, x = n;
if(x < 1) ans+=-x+1, x = 1;
if(y > 2) ans+=y-2, y = 2;
if(y < 1) ans+=-y+1, y = 1;
x--, y--;
v[y][x]++;
}
//cerr << ans << " d\n";
//for(int x: v[0]) cerr << x << " "; cerr << "d\n";
//for(int x: v[1]) cerr << x << " "; cerr << "d\n";
for(int i = 0; i < n; i++) for(int k = 0; k < 2; k++){
if(v[k][i] > 0) continue;
pair<int, int> p; int mn = 1e9;
for(int kk = 0; kk < 2; kk++) for(int j = 0; j < n; j++){
if(v[kk][j] <= 1) continue;
if(abs(k-kk)+abs(i-j) < mn) mn = abs(k-kk)+abs(i-j), p = {kk, j};
//if(abs(k-kk)+abs(i-j) == mn && k == kk) p = {kk, j};
}
v[p.f][p.sc]--;
v[k][i]++;
ans+=abs(k-p.f)+abs(i-p.sc);
}
cout << ans << "\n";
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
204 KB |
Output is correct |
2 |
Correct |
0 ms |
204 KB |
Output is correct |
3 |
Correct |
0 ms |
204 KB |
Output is correct |
4 |
Correct |
1 ms |
204 KB |
Output is correct |
5 |
Correct |
0 ms |
204 KB |
Output is correct |
6 |
Incorrect |
0 ms |
204 KB |
Output isn't correct |
7 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
204 KB |
Output is correct |
2 |
Correct |
0 ms |
204 KB |
Output is correct |
3 |
Correct |
0 ms |
204 KB |
Output is correct |
4 |
Correct |
1 ms |
204 KB |
Output is correct |
5 |
Correct |
0 ms |
204 KB |
Output is correct |
6 |
Incorrect |
0 ms |
204 KB |
Output isn't correct |
7 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
204 KB |
Output is correct |
2 |
Correct |
0 ms |
204 KB |
Output is correct |
3 |
Correct |
0 ms |
204 KB |
Output is correct |
4 |
Correct |
1 ms |
204 KB |
Output is correct |
5 |
Correct |
0 ms |
204 KB |
Output is correct |
6 |
Incorrect |
0 ms |
204 KB |
Output isn't correct |
7 |
Halted |
0 ms |
0 KB |
- |