QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#320678 | #8214. Huge Oil Platform | ucup-team197# | WA | 7553ms | 6596kb | C++20 | 4.9kb | 2024-02-03 19:58:08 | 2024-02-03 19:58:09 |
Judging History
answer
#include <iostream>
#include <algorithm>
#include <vector>
#include <cassert>
#include <utility>
#include <iomanip>
#include <cmath>
#include <random>
#include <chrono>
#include <set>
using namespace std;
typedef long long ll;
typedef long double ld;
struct Point{
ll x, y, w;
ll dot(Point p) const {return x * p.x + y * p.y;}
ll cross(Point p) const {return x * p.y - y * p.x;}
};
const int N = 400 + 3;
#define all(x) (x).begin(), (x).end()
int n;
Point p[N];
ll w[N];
vector<ld> st_ys;
struct SegmentTree{
struct Node{
ld sum_w, mx;
ld best_l, best_r;
Node(){
sum_w = mx = best_l = best_r = 0;
}
friend Node merge(const Node &l, const Node &r, int idx_l, int idx_r){
int mid = (idx_l + idx_r) / 2;
Node ret;
ret.sum_w = l.sum_w + r.sum_w;
ret.best_l = max(l.best_l, l.sum_w - 2 * (st_ys[mid + 1] - st_ys[idx_l]) + r.best_l);
ret.best_r = max(r.best_r, r.sum_w - 2 * (st_ys[idx_r] - st_ys[mid]) + l.best_r);
ret.mx = max(l.mx, r.mx);
ret.mx = max(ret.mx, l.best_r + r.best_l - 2 * (st_ys[mid + 1] - st_ys[mid]));
return ret;
}
} nd[4 * N];
void init(){
for(int i = 0; i < 4 * (st_ys.size()); ++i){
nd[i] = Node();
}
}
void update(int idx, ll w, int i = 0, int l = 0, int r = (int)st_ys.size() - 1){
if(idx < l || r < idx) return;
if(l == r){
nd[i].sum_w += w;
nd[i].best_l = nd[i].best_r = nd[i].mx = nd[i].sum_w;
return;
}
int mid = (l + r) >> 1;
update(idx, w, 2 * i + 1, l, mid);
update(idx, w, 2 * i + 2, mid + 1, r);
nd[i] = merge(nd[2 * i + 1], nd[2 * i + 2], l, r);
}
ld query(int i = 0, int l = 0, int r = (int)st_ys.size() - 1){
return nd[i].mx;
}
} st;
ld solve2(vector<ll> &ys, vector<Point> &new_p, ll mid_x, ld div){
st_ys.resize(ys.size());
for(int i = 0; i < ys.size(); ++i){
st_ys[i] = ys[i] / div;
}
st.init();
ld ans = 0;
for(int i = 0; i < new_p.size(); ++i){
st.update(lower_bound(all(ys), new_p[i].y) - ys.begin(), new_p[i].w);
if(i == (int)new_p.size() - 1 || new_p[i].x != new_p[i + 1].x){
ld cand = -2 * (new_p[i].x - mid_x) / div;
cand += st.query();
ans = max(ans, cand);
}
}
return ans;
}
ld solve(vector<ll> &xs, vector<ll> &ys, vector<Point> &new_p, ll mid_x, ld div){
sort(all(new_p), [&](auto l, auto r){
return l.x < r.x;
});
vector<Point> left_p, right_p;
for(int i = 0; i < new_p.size(); ++i){
if(new_p[i].x >= mid_x){
right_p.push_back(new_p[i]);
}
}
for(int i = (int)new_p.size() - 1; i >= 0; --i){
if(new_p[i].x <= mid_x){
left_p.push_back(Point{-new_p[i].x, new_p[i].y, new_p[i].w});
}
}
return max(solve2(ys, left_p, -mid_x, div), solve2(ys, right_p, mid_x, div));
}
clock_t timer = clock();
bool time_left(){
return (((float)clock() - (float)timer) / (float)CLOCKS_PER_SEC) <= 7.5;
}
set<pair<ll, ll>> s;
ll gcd(ll x, ll y){
if(!y) return x;
return gcd(y, x % y);
}
int main(){
ios::sync_with_stdio(false);
cin.tie(NULL);
cin >> n;
ld ans = 0;
for(int i = 0; i < n; ++i){
cin >> p[i].x >> p[i].y >> p[i].w;
ans = max(ans, (ld)p[i].w);
}
mt19937 mt(chrono::steady_clock::now().time_since_epoch().count());
shuffle(p, p + n, mt);
for(int i = 0; i < n && time_left(); ++i){
for(int j = i + 1; j < n; ++j){
vector<Point> new_p;
Point diff{p[j].x - p[i].x, p[j].y - p[i].y, 0};
ll g = gcd(abs(diff.x), abs(diff.y));
diff.x /= g;
diff.y /= g;
if(diff.x < 0){
diff.x = -diff.x;
diff.y = -diff.y;
}
if(s.count(pair{diff.x, diff.y})){
continue;
}
s.insert(pair{diff.x, diff.y});
for(int k = 0; k < n; ++k){
new_p.push_back(Point{p[k].cross(diff), p[k].dot(diff), p[k].w});
}
ll mid_x = new_p[i].x;
vector<ll> xs, ys;
for(int k = 0; k < n; ++k){
xs.push_back(new_p[k].x);
ys.push_back(new_p[k].y);
}
sort(all(xs));
xs.resize(unique(all(xs)) - xs.begin());
sort(all(ys));
ys.resize(unique(all(ys)) - ys.begin());
ld div = sqrt((ld)diff.x * diff.x + diff.y * diff.y);
ans = max(ans, solve(xs, ys, new_p, mid_x, div));
}
}
cout << fixed << setprecision(12) << ans << "\n";
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 4012kb
input:
2 1 1 1 3 3 1
output:
1.000000000000
result:
ok found '1.0000000', expected '1.0000000', error '0.0000000'
Test #2:
score: 0
Accepted
time: 1ms
memory: 4204kb
input:
3 4 5 5 4 6 7 1 3 8
output:
10.100505063388
result:
ok found '10.1005051', expected '10.1005051', error '0.0000000'
Test #3:
score: 0
Accepted
time: 1ms
memory: 4036kb
input:
2 0 0 1 1000000 1000000 1000000000
output:
1000000000.000000000000
result:
ok found '1000000000.0000000', expected '1000000000.0000000', error '0.0000000'
Test #4:
score: 0
Accepted
time: 2ms
memory: 3920kb
input:
20 328 207 21 365 145 188 347 79 41 374 335 699 288 250 97 32 267 131 296 332 434 2 91 36 139 43 21 26 455 696 57 135 410 14 500 396 255 181 646 103 114 593 309 351 787 207 316 138 440 416 806 413 349 695 413 201 501 455 396 442
output:
6092.442712623783
result:
ok found '6092.4427126', expected '6092.4427126', error '0.0000000'
Test #5:
score: 0
Accepted
time: 3ms
memory: 4004kb
input:
20 38 207 766 202 485 964 257 466 900 205 486 738 166 53 716 61 94 881 252 165 182 63 292 612 225 278 242 224 242 566 381 196 702 56 494 997 268 288 884 379 227 3 357 271 975 55 73 678 260 55 623 399 369 515 116 354 580 404 239 950
output:
11878.257312827460
result:
ok found '11878.2573128', expected '11878.2573128', error '0.0000000'
Test #6:
score: 0
Accepted
time: 2ms
memory: 4104kb
input:
20 249 215 320 38 48 229 457 366 56 36 142 186 44 96 935 97 190 143 215 218 123 116 486 291 304 232 463 429 297 29 479 475 97 97 198 405 69 395 121 381 121 926 137 197 972 410 91 218 87 421 737 117 390 144 319 287 170 353 302 754
output:
5573.255896932630
result:
ok found '5573.2558969', expected '5573.2558969', error '0.0000000'
Test #7:
score: 0
Accepted
time: 2ms
memory: 4080kb
input:
20 474 215 66 376 120 6 367 259 211 362 293 34 416 407 554 133 292 894 171 278 871 459 187 674 383 192 980 352 78 899 83 27 684 138 185 709 357 234 359 390 241 40 418 124 161 258 348 462 408 59 851 110 184 668 28 447 761 20 131 367
output:
8510.595617883409
result:
ok found '8510.5956179', expected '8510.5956179', error '0.0000000'
Test #8:
score: 0
Accepted
time: 7527ms
memory: 6448kb
input:
400 979422 264252 76260 922920 334464 58710 87057 798078 39652 602478 649867 49073 388746 161788 44501 727471 373113 28061 944959 505744 22145 191465 164645 49421 102241 771049 65953 44911 762286 34082 112779 537040 98117 688054 585935 53647 391845 931395 55355 788464 698271 91449 984533 409449 8331...
output:
35610300.744289873757
result:
ok found '35610300.7442899', expected '35610300.7442899', error '0.0000000'
Test #9:
score: 0
Accepted
time: 7524ms
memory: 6432kb
input:
400 972392 809281 95619 19054 872671 65516 732236 376176 38922 412232 147107 36902 242843 486112 34287 311141 416172 5612 453695 775962 79060 806457 678364 29585 324358 953486 58858 532543 378842 67089 20301 449627 86941 252735 242252 66239 335667 454693 40007 563783 444579 49920 663605 128448 3095 ...
output:
35334006.330976821209
result:
ok found '35334006.3309768', expected '35334006.3309768', error '0.0000000'
Test #10:
score: 0
Accepted
time: 7513ms
memory: 6412kb
input:
400 718289 727141 23905 849810 500522 44241 890554 385825 70996 597411 423432 99133 994251 463004 32770 388843 280170 47562 664865 319482 48403 353770 474376 52218 508270 890719 28901 80661 697191 77469 459811 411012 23750 741501 408373 60551 163462 269625 56148 406785 260156 41900 337932 855364 578...
output:
36725958.767186870362
result:
ok found '36725958.7671869', expected '36725958.7671869', error '0.0000000'
Test #11:
score: 0
Accepted
time: 7532ms
memory: 6436kb
input:
400 6840 184362 43862 608935 154893 10000000 746897 683314 71237 255918 899062 94342 478185 102216 1923 890855 323689 44654 467417 577805 20 919997 267591 21891 303668 171438 29365 324647 818449 18945 229942 874921 22870 174645 613823 31193 559386 859851 36262 156698 936021 86194 968031 522125 75799...
output:
36590958.860493370568
result:
ok found '36590958.8604934', expected '36590958.8604934', error '0.0000000'
Test #12:
score: 0
Accepted
time: 7541ms
memory: 6596kb
input:
400 213928 419916 45837 334919 278535 7824 100882 416988 26147 682280 524709 85794 569137 589867 48913 344075 156956 4813 87794 655931 25690 285467 798402 55113 295984 894760 44628 535011 461670 72400 917862 461662 90830 544780 751382 81071 588022 966874 10000000 872058 880760 39315 216881 626161 22...
output:
46173511.871992310913
result:
ok found '46173511.8719923', expected '46173511.8719923', error '0.0000000'
Test #13:
score: -100
Wrong Answer
time: 7553ms
memory: 6524kb
input:
400 937407 829281 77362 837708 843713 34574 77624 684540 68232 786430 452449 38426 486327 341660 86859 964636 122535 12764 699975 284575 84208 806142 721010 10955 464680 787842 37887 395874 727033 70790 59849 84503 90263 557124 876914 45080 168385 390089 16463 6894 13302 8291 380410 621577 47431 992...
output:
45703891.884845104338
result:
wrong answer 1st numbers differ - expected: '45704049.9615343', found: '45703891.8848451', error = '0.0000035'