QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#734492#9540. Double 11ucup-team3646TL 1209ms8032kbC++203.1kb2024-11-11 11:28:572024-11-11 11:28:58

Judging History

你现在查看的是最新测评结果

  • [2024-11-11 11:28:58]
  • 评测
  • 测评结果:TL
  • 用时:1209ms
  • 内存:8032kb
  • [2024-11-11 11:28:57]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;

using ll = long long;
#define rep(i, n) for(ll i = 0; i < n; i++)
#define rep2(i, l, r) for(ll i = l; i < r; i++)

using vi = vector<int>;
using vvi = vector<vi>;
using vll = vector<ll>;

/* ---- */
#define all(A) A.begin(), A.end()
#define elif else if
using pii = pair<ll, ll>;

bool chmin(auto &a, const auto &b) {return a > b ? a = b, 1 : 0;}
bool chmax(auto &a, const auto &b) {return a < b ? a = b, 1 : 0;}

struct IOSetup {
  IOSetup() {
    cin.tie(0);
    ios::sync_with_stdio(0);
  }
} iosetup;

template<class T>
void print(vector<T> a) {
  for (auto x : a) cerr << x << ' ';
  cerr << endl;
}

void print(auto x) {
  cerr << x << endl;
}

template<class Head, class... Tail>
void print(Head&& head, Tail&&... tail) {
  cerr << head << ' ';
  print(forward<Tail>(tail)...);
}

double stop_watch(struct timespec start_time) {
    // 経過時間を秒単位で返す.
    struct timespec end_time;
    clock_gettime(CLOCK_REALTIME, &end_time);
    long long int sec = end_time.tv_sec - start_time.tv_sec;
    long long int nsec = end_time.tv_nsec - start_time.tv_nsec;
    return (double)sec + (double)nsec / (1000 * 1000 * 1000);
}


// https://noshi91.hatenablog.com/entry/2023/02/18/005856
// https://nyaannyaan.github.io/library/dp/monge-d-edge-shortest-path-enumerate.hpp

template <typename T>
vector<T> monge_shortest_path(int N, const function<T(int, int)>& f) {
  T INF = 1e100;
  vector<T> dp(N + 1, INF);
  vector<int> x(N + 1, 0);
  auto check = [&](int from, int to) {
    if (from >= to) return;
    T cost = f(from, to);
    if (dp[from] + cost < dp[to]) dp[to] = dp[from] + cost, x[to] = from;
  };
  auto dfs = [&](auto rc, int l, int r) -> void {
    if (l + 1 >= r) return;
    int m = (l + r) / 2;
    for (int i = x[l]; i <= x[r]; i++) check(i, m);
    rc(rc, l, m);
    for (int i = l + 1; i <= m; i++) check(i, r);
    rc(rc, m, r);
  };
  dp[0] = 0, check(0, N), dfs(dfs, 0, N);
  return dp;
}

using ld=long double;
ld inf=1e100;
ld phi=1.618033988749895;
int main(){
  struct timespec start_time;
  clock_gettime(CLOCK_REALTIME, &start_time);

  int n,m;
  cin>>n>>m;
  vector<ld>a(n);
  rep(i,n)cin>>a[i];
  sort(a.begin(),a.end());
  vector<ld>cum(n+1,0);
  rep(i,n)cum[i+1]=cum[i]+a[i];

  auto calc=[&](ld x)->ld{
    auto cost=[&](int l,int r)->ld{
      return sqrtl((r-l)*(cum[r]-cum[l]))+x;
    };
    return monge_shortest_path<ld>(n,cost)[n]-m*x;
  };

  pair<ld,ld>l,ml,mr,r;
  l={0,-inf};
  r={3*sqrtl(n*cum[n]+10),-inf};
  {
    ld x=(phi-1)*l.first+(2-phi)*r.first;
    ml={x,calc(x)};
  }
  {
    ld x=(phi-1)*ml.first+(2-phi)*r.first;
    mr={x,calc(x)};
  }

  print(l.first,ml.first,mr.first,r.first);

  rep(i,120){
    // print(l.first,ml.first,mr.first,r.first);
    if(ml.second>mr.second){
      r=mr;
      mr=ml;
      ld x=(phi-1)*l.first+(2-phi)*mr.first;
      ml={x,calc(x)};
    }
    else{
      l=ml;
      ml=mr;
      ld x=(phi-1)*ml.first+(2-phi)*r.first;
      mr={x,calc(x)};
    }
  }
  cout<<fixed<<setprecision(20)<<calc(ml.first)<<endl;
}

详细

Test #1:

score: 100
Accepted
time: 0ms
memory: 3972kb

input:

4 2
1 2 3 4

output:

6.19114712955711948405

result:

ok found '6.191147130', expected '6.191147130', error '0.000000000'

Test #2:

score: 0
Accepted
time: 0ms
memory: 3792kb

input:

10 3
1 2 3 4 5 6 7 8 9 10

output:

22.59162536651412858668

result:

ok found '22.591625367', expected '22.591625367', error '0.000000000'

Test #3:

score: 0
Accepted
time: 0ms
memory: 3868kb

input:

1 1
1

output:

1.00000000000000000022

result:

ok found '1.000000000', expected '1.000000000', error '0.000000000'

Test #4:

score: 0
Accepted
time: 0ms
memory: 3844kb

input:

1 1
100000

output:

316.22776601683793318287

result:

ok found '316.227766017', expected '316.227766017', error '0.000000000'

Test #5:

score: 0
Accepted
time: 0ms
memory: 3892kb

input:

7 1
10 47 53 9 83 33 15

output:

41.83300132670377740468

result:

ok found '41.833001327', expected '41.833001327', error '0.000000000'

Test #6:

score: 0
Accepted
time: 0ms
memory: 3908kb

input:

8 5
138 1702 119 1931 418 1170 840 1794

output:

233.90165455194358384849

result:

ok found '233.901654552', expected '233.901654552', error '0.000000000'

Test #7:

score: 0
Accepted
time: 1ms
memory: 3912kb

input:

58 1
888 251 792 847 685 3 182 461 102 348 555 956 771 901 712 878 580 631 342 333 285 899 525 725 537 718 929 653 84 788 104 355 624 803 253 853 201 995 536 184 65 205 540 652 549 777 248 405 677 950 431 580 600 846 328 429 134 983

output:

1355.26528768355902299092

result:

ok found '1355.265287684', expected '1355.265287684', error '0.000000000'

Test #8:

score: 0
Accepted
time: 1ms
memory: 3980kb

input:

88 30
67117 31903 93080 85196 16438 97116 11907 72959 83651 41273 52873 81892 81468 51323 99992 58869 54258 7183 87358 90990 80596 41252 90769 82705 61434 8524 13575 10787 53950 96768 12062 34637 27806 70937 69653 28380 90236 3352 27537 3873 91006 89790 25369 91825 82734 5588 4539 74118 47098 84741 ...

output:

18791.47535409410011197906

result:

ok found '18791.475354094', expected '18791.475354094', error '0.000000000'

Test #9:

score: 0
Accepted
time: 10ms
memory: 3920kb

input:

987 59
5209 1618 7129 7700 893 6647 8231 3314 9844 1347 6789 2711 3968 7416 5864 9190 9564 8874 7357 2087 530 8754 7935 6772 3475 8206 2898 2717 9252 8686 6604 5188 7451 9977 9366 7618 6294 6454 3919 3232 8164 8403 8617 2191 5257 626 8554 1952 1727 4759 205 9453 3312 9387 4798 7774 7005 8892 3570 50...

output:

66075.50858705464685982633

result:

ok found '66075.508587055', expected '66075.508587055', error '0.000000000'

Test #10:

score: 0
Accepted
time: 5ms
memory: 3996kb

input:

572 529
48392 84311 16267 29255 52276 20511 75195 95522 64489 52229 74478 69766 41777 25148 59976 66512 62953 16779 69312 98832 96131 94700 46403 58028 12868 83503 80367 51036 63398 7509 55193 76715 29143 75925 89863 89244 5561 21242 9047 89763 78016 86274 11382 88520 72343 29729 70986 86600 43707 7...

output:

119849.32268175806106569325

result:

ok found '119849.322681758', expected '119849.322681758', error '0.000000000'

Test #11:

score: 0
Accepted
time: 67ms
memory: 4132kb

input:

6133 2231
2292 4026 3420 3246 5243 41 4223 468 682 5008 1497 584 1573 7049 5848 4129 5555 9957 9311 7225 6065 9498 3569 1695 717 1968 9690 7557 8700 9427 5142 371 8788 2260 9576 2674 4322 7448 5829 9123 982 7591 438 1590 9459 5982 5002 243 4144 4254 9585 9988 6745 3691 9602 2297 9518 1181 9814 1746 ...

output:

406852.36690047162073824438

result:

ok found '406852.366900472', expected '406852.366900471', error '0.000000000'

Test #12:

score: 0
Accepted
time: 86ms
memory: 4076kb

input:

8384 5123
19058 18998 87373 34122 75328 47694 7628 72373 15038 82392 99284 70202 49919 24589 3369 42325 8281 56682 20694 78018 67433 34318 26086 37124 18668 94430 78732 53794 58279 21730 60156 95172 58849 10021 70991 26522 88420 92248 63779 33077 16703 80111 94041 85804 3110 21282 12757 69593 53872 ...

output:

1764954.76112867261872452218

result:

ok found '1764954.761128673', expected '1764954.761128677', error '0.000000000'

Test #13:

score: 0
Accepted
time: 1209ms
memory: 8032kb

input:

92842 83212
71466 9482 98728 78471 22915 2470 5999 53211 25994 3996 11349 30511 56448 17277 78308 18316 42069 38636 63127 26256 63985 57249 58305 64366 17839 28518 18980 95945 36316 6076 69530 96509 6940 6039 56048 41847 82118 41054 49670 95896 45891 74636 90736 75413 27251 87730 68344 66202 71879 5...

output:

19558873.68887016996632155497

result:

ok found '19558873.688870169', expected '19558873.688863300', error '0.000000000'

Test #14:

score: -100
Time Limit Exceeded

input:

93773 73078
12212 18977 10701 17909 16643 1406 15608 19767 11321 4708 10418 5834 10141 18240 12668 2694 11528 16150 8201 793 9736 15133 17474 6052 830 8574 1473 6393 11680 9784 16406 3428 10520 6431 7941 3167 17474 16569 19046 9595 7858 12512 7204 414 13548 7490 9887 9184 4298 1124 8330 749 12122 14...

output:


result: