#include <iostream> #include <vector> using namespace std; int n,k,a,b; vector<long long>wyniki; vector <pair <int,int> > t; typedef vector <pair <int,int> > VP; typedef long long LL; vector <pair <int,VP> >tmp; long long w; long long odl(LL x1, LL x2, LL y1, LL y2) { return (x2-x1)*(x2-x1)+(y2-y1)*(y2-y1); } pair <int,int> zbliz(int a, int b) /** b zbliza sie do a **/ { int o1,o2,o3; if (t[a].first==t[b].first) { if (t[a].second>t[b].second) return {t[a].first,t[b].second+1}; return {t[a].first,t[b].second-1}; } else if (t[a].second==t[b].second) { if (t[a].first>t[b].first) return {t[b].first+1,t[b].second}; return {t[b].first-1,t[b].second}; } if ((t[a].first>t[b].first)&&(t[a].second>t[b].second)) //przesuwa sie w prawo lub w gore { o1=odl(t[a].first,t[b].first,t[a].second,t[b].second+1); o2=odl(t[a].first,t[b].first+1,t[a].second,t[b].second); o3=odl(t[a].first,t[b].first+1,t[a].second,t[b].second+1); if ((o2>o3)&&(o1>o3)) return {t[b].first+1,t[b].second+1}; if (o2>o1) return {t[b].first,t[b].second+1}; return {t[b].first+1,t[b].second}; } if ((t[a].first>t[b].first)&&(t[a].second<t[b].second)) //przesuwa sie w prawo lub w dol { o1=odl(t[a].first,t[b].first+1,t[a].second,t[b].second); o2=odl(t[a].first,t[b].first,t[a].second,t[b].second-1); o3=odl(t[a].first,t[b].first+1,t[a].second,t[b].second-1); if ((o2>o3)&&(o1>o3)) return {t[b].first+1,t[b].second-1}; if (o2>o1) return {t[b].first+1,t[b].second}; return {t[b].first,t[b].second-1}; } if ((t[a].first<t[b].first)&&(t[a].second>t[b].second)) //przesuwa sie w lewo lub w gore { o1=odl(t[a].first,t[b].first-1,t[a].second,t[b].second); o2=odl(t[a].first,t[b].first,t[a].second,t[b].second+1); o3=odl(t[a].first,t[b].first-1,t[a].second,t[b].second+1); if ((o2>o3)&&(o1>o3)) return {t[b].first-1,t[b].second+1}; if (o2>o1) return {t[b].first-1,t[b].second}; return {t[b].first,t[b].second+1}; } //przesuwa sie w lewo lub w dol o1=odl(t[a].first,t[b].first,t[a].second,t[b].second-1); o2=odl(t[a].first,t[b].first-1,t[a].second,t[b].second); o3=odl(t[a].first,t[b].first-1,t[a].second,t[b].second-1); if ((o2>o3)&&(o1>o3)) return {t[b].first-1,t[b].second-1}; if (o2>o1) return {t[b].first,t[b].second-1}; return {t[b].first-1,t[b].second}; } int main() { ios_base::sync_with_stdio(0); cin.tie(0); cin>>n; for (int i=0; i<n; i++) { cin>>a>>b; t.push_back({a,b}); } int ind=n/107; int p1=0; for (int i=0; i<n-1; i++) { if (i==p1) { tmp.push_back({i,t}); p1+=ind; } for (int j=0; j<n-1; j++) { if (t[i]!=t[j]) t[j]=zbliz(i,j); } } for (int i=0; i<n; i++) { w+=(long long)t[i].first*(long long)t[i].second; } wyniki.push_back(w); int vind=tmp.size()-1; k=n-2; for (;k>=0;k--) { w=0; if (k<tmp[vind].first) vind--; t=tmp[vind].second; for (int i=vind; i<n; i++) { if (i!=k) { for (int j=0; j<n; j++) { if ((j!=k)&&(t[i]!=t[j])) t[j]=zbliz(i,j); } } } for (int i=0; i<n; i++) { w+=(long long)t[i].first*(long long)t[i].second; } wyniki.push_back(w); } for (int i=wyniki.size()-1; i>=0; i--) { cout<<wyniki[i]<<"\n"; } return 0; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 | #include <iostream> #include <vector> using namespace std; int n,k,a,b; vector<long long>wyniki; vector <pair <int,int> > t; typedef vector <pair <int,int> > VP; typedef long long LL; vector <pair <int,VP> >tmp; long long w; long long odl(LL x1, LL x2, LL y1, LL y2) { return (x2-x1)*(x2-x1)+(y2-y1)*(y2-y1); } pair <int,int> zbliz(int a, int b) /** b zbliza sie do a **/ { int o1,o2,o3; if (t[a].first==t[b].first) { if (t[a].second>t[b].second) return {t[a].first,t[b].second+1}; return {t[a].first,t[b].second-1}; } else if (t[a].second==t[b].second) { if (t[a].first>t[b].first) return {t[b].first+1,t[b].second}; return {t[b].first-1,t[b].second}; } if ((t[a].first>t[b].first)&&(t[a].second>t[b].second)) //przesuwa sie w prawo lub w gore { o1=odl(t[a].first,t[b].first,t[a].second,t[b].second+1); o2=odl(t[a].first,t[b].first+1,t[a].second,t[b].second); o3=odl(t[a].first,t[b].first+1,t[a].second,t[b].second+1); if ((o2>o3)&&(o1>o3)) return {t[b].first+1,t[b].second+1}; if (o2>o1) return {t[b].first,t[b].second+1}; return {t[b].first+1,t[b].second}; } if ((t[a].first>t[b].first)&&(t[a].second<t[b].second)) //przesuwa sie w prawo lub w dol { o1=odl(t[a].first,t[b].first+1,t[a].second,t[b].second); o2=odl(t[a].first,t[b].first,t[a].second,t[b].second-1); o3=odl(t[a].first,t[b].first+1,t[a].second,t[b].second-1); if ((o2>o3)&&(o1>o3)) return {t[b].first+1,t[b].second-1}; if (o2>o1) return {t[b].first+1,t[b].second}; return {t[b].first,t[b].second-1}; } if ((t[a].first<t[b].first)&&(t[a].second>t[b].second)) //przesuwa sie w lewo lub w gore { o1=odl(t[a].first,t[b].first-1,t[a].second,t[b].second); o2=odl(t[a].first,t[b].first,t[a].second,t[b].second+1); o3=odl(t[a].first,t[b].first-1,t[a].second,t[b].second+1); if ((o2>o3)&&(o1>o3)) return {t[b].first-1,t[b].second+1}; if (o2>o1) return {t[b].first-1,t[b].second}; return {t[b].first,t[b].second+1}; } //przesuwa sie w lewo lub w dol o1=odl(t[a].first,t[b].first,t[a].second,t[b].second-1); o2=odl(t[a].first,t[b].first-1,t[a].second,t[b].second); o3=odl(t[a].first,t[b].first-1,t[a].second,t[b].second-1); if ((o2>o3)&&(o1>o3)) return {t[b].first-1,t[b].second-1}; if (o2>o1) return {t[b].first,t[b].second-1}; return {t[b].first-1,t[b].second}; } int main() { ios_base::sync_with_stdio(0); cin.tie(0); cin>>n; for (int i=0; i<n; i++) { cin>>a>>b; t.push_back({a,b}); } int ind=n/107; int p1=0; for (int i=0; i<n-1; i++) { if (i==p1) { tmp.push_back({i,t}); p1+=ind; } for (int j=0; j<n-1; j++) { if (t[i]!=t[j]) t[j]=zbliz(i,j); } } for (int i=0; i<n; i++) { w+=(long long)t[i].first*(long long)t[i].second; } wyniki.push_back(w); int vind=tmp.size()-1; k=n-2; for (;k>=0;k--) { w=0; if (k<tmp[vind].first) vind--; t=tmp[vind].second; for (int i=vind; i<n; i++) { if (i!=k) { for (int j=0; j<n; j++) { if ((j!=k)&&(t[i]!=t[j])) t[j]=zbliz(i,j); } } } for (int i=0; i<n; i++) { w+=(long long)t[i].first*(long long)t[i].second; } wyniki.push_back(w); } for (int i=wyniki.size()-1; i>=0; i--) { cout<<wyniki[i]<<"\n"; } return 0; } |