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 <bits/stdc++.h> using namespace std;
#ifdef Fread char buf[1 << 21], *iS, *iT; #define gc() (iS == iT ? (iT = (iS = buf) + fread (buf, 1, 1 << 21, stdin), (iS == iT ? EOF : *iS ++)) : *iS ++) #define getchar gc #endif
template <typename T> void r1(T &x) { x = 0; char c(getchar()); int f(1); for(; c < '0' || c > '9'; c = getchar()) if(c == '-') f = -1; for(; '0' <= c && c <= '9';c = getchar()) x = (x * 10) + (c ^ 48); x *= f; }
template <typename T,typename... Args> inline void r1(T& t, Args&... args) { r1(t); r1(args...); }
#ifdef Getmod const int mod = 1e9 + 7; template <int mod> struct typemod { int z; typemod(int a = 0) : z(a) {} inline int inc(int a,int b) const {return a += b - mod, a + ((a >> 31) & mod);} inline int dec(int a,int b) const {return a -= b, a + ((a >> 31) & mod);} inline int mul(int a,int b) const {return 1ll * a * b % mod;} typemod<mod> operator + (const typemod<mod> &x) const {return typemod(inc(z, x.z));} typemod<mod> operator - (const typemod<mod> &x) const {return typemod(dec(z, x.z));} typemod<mod> operator * (const typemod<mod> &x) const {return typemod(mul(z, x.z));} typemod<mod>& operator += (const typemod<mod> &x) {*this = *this + x; return *this;} typemod<mod>& operator -= (const typemod<mod> &x) {*this = *this - x; return *this;} typemod<mod>& operator *= (const typemod<mod> &x) {*this = *this * x; return *this;} int operator == (const typemod<mod> &x) const {return x.z == z;} int operator != (const typemod<mod> &x) const {return x.z != z;} }; typedef typemod<mod> Tm; #endif
const int maxn = 1e5 + 5; const int maxm = maxn << 1;
int n;
__int128 min(__int128 x, __int128 y) { return x < y ? x : y; } __int128 abs(__int128 x) { return x < 0 ? -x : x; }
__int128 sx, sy, st;
struct Node { __int128 x, y, t; Node(void) : x(0), y(0), t(0) {} void init() { __int128 nx, ny; r1(nx, ny, t); x = (nx + ny), y = (nx - ny); sx += x * t, sy += y * t, st += t; } }a[maxn];
void write(__int128 x) { vector<char> s; s.clear(); while(x) s.push_back((char)('0' + x % 10)), x /= 10; reverse(s.begin(), s.end()); for(auto v : s) putchar(v); }
void Out(__int128 x, __int128 y) { write((x + y) >> 1), putchar(' '), write((x - y) >> 1), puts(""), void(); }
__int128 calc(__int128 x, __int128 y) { __int128 res(0); for(int i = 1; i <= n; ++ i) { res += ( abs(x - a[i].x) + abs(y - a[i].y) ) * a[i].t; } return res; }
void Work(__int128 x,__int128 y) { int i, j; if((x & 1) == (y & 1)) return Out(x, y); __int128 s1 = calc(x, y + 1); __int128 s2 = calc(x - 1, y); __int128 s3 = calc(x, y - 1); __int128 s4 = calc(x + 1, y); __int128 ans = min(min(s1, s2), min(s3, s4)); if(ans == s1) return Out(x, y + 1); if(ans == s2) return Out(x - 1, y); if(ans == s3) return Out(x, y - 1); if(ans == s4) return Out(x + 1, y); }
signed main() {
int i, j; r1(n); for(i = 1; i <= n; ++ i) a[i].init(); sort(a + 1, a + n + 1, [&] (const Node &a, const Node &b) { return a.x < b.x; }); __int128 sum, ct, mnx, mny, x, y; mnx = 0x3f3f3f3f3f3f3f3f; mny = mnx = (mnx * mnx); for(sum = ct = 0, i = 1; i <= n; ++ i) { __int128 tmp(0); tmp += a[i].x * ct - sum; tmp += - (st - ct - a[i].t) * a[i].x + (sx - a[i].t * a[i].x - sum); if(tmp < mnx) mnx = tmp, x = a[i].x; sum += a[i].x * a[i].t; ct += a[i].t; } sort(a + 1, a + n + 1, [&] (const Node &a, const Node &b) { return a.y < b.y; }); for(sum = ct = 0, i = 1; i <= n; ++ i) { __int128 tmp(0); tmp += a[i].y * ct - sum; tmp += - (st - ct - a[i].t) * a[i].y + (sy - a[i].t * a[i].y - sum); if(tmp < mny) mny = tmp, y = a[i].y; sum += a[i].y * a[i].t; ct += a[i].t; }
Work(x, y);
return 0; }
|