Submission #634548

#TimeUsernameProblemLanguageResultExecution timeMemory
634548slimeCoin Collecting (JOI19_ho_t4)C++14
0 / 100
1 ms304 KiB
#include "bits/stdc++.h" #define int long long using namespace std; struct coin { int ox, oy; // original x, y int nx, ny; // new x, y int cost = 0; }; void solve(int tc) { int n; cin >> n; coin c[2*n + 1]; for(int i=1; i<=2*n; i++) { cin >> c[i].ox >> c[i].oy; if(c[i].ox > n) { if(c[i].oy >= 2) { // Choose (n, 2) c[i].nx = n; c[i].ny = 2; } else { // Choose (n, 1) c[i].nx = n; c[i].ny = 1; } } else if(c[i].ox < 1) { if(c[i].oy >= 2) { c[i].nx = 1; c[i].ny = 2; } else { c[i].nx = 1; c[i].ny = 1; } } else { if(c[i].oy >= 2) { c[i].nx = c[i].ox; c[i].ny = 2; } else { c[i].nx = c[i].ox; c[i].ny = 1; } } c[i].cost = abs(c[i].ox - c[i].nx) + abs(c[i].oy - c[i].ny); } int base = 0; for(int i=1; i<=2*n; i++) base += c[i].cost; int cnt[n+1][3]; for(int i=1; i<=n; i++) { for(int j=1; j<=2; j++) { cnt[i][j] = 0; } } for(int i=1; i<=2*n; i++) cnt[c[i].nx][c[i].ny]++; for(int i=1; i<=2*n; i++) { int jj = -1, kk = -1; bool done = 0; for(int j=1; j<=n; j++) { for(int k=1; k<=2; k++) { if(cnt[j][k] > 1) { jj = j, kk = k; done = 1; break; } } if(done) break; } done = 0; if(jj == -1) break; for(int j=1; j<=n; j++) { for(int k=1; k<=2; k++) { if(cnt[j][k] == 0) { base += abs(j - jj) + abs(k - kk); cnt[jj][kk]--; cnt[j][k]++; done = 1; break; } } if(done) break; } } cout << base << '\n'; } int32_t main() { int t = 1; // cin >> t; for(int i=1; i<=t; i++) solve(i); }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...