結果
問題 | No.5020 Averaging |
ユーザー | りあん |
提出日時 | 2024-02-25 14:36:12 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 590 ms / 1,000 ms |
コード長 | 3,672 bytes |
コンパイル時間 | 4,297 ms |
コンパイル使用メモリ | 285,120 KB |
実行使用メモリ | 6,676 KB |
スコア | 41,948,442 |
最終ジャッジ日時 | 2024-02-25 14:36:44 |
合計ジャッジ時間 | 31,892 ms |
ジャッジサーバーID (参考情報) |
judge14 / judge11 |
純コード判定しない問題か言語 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 474 ms
6,676 KB |
testcase_01 | AC | 474 ms
6,676 KB |
testcase_02 | AC | 435 ms
6,676 KB |
testcase_03 | AC | 461 ms
6,676 KB |
testcase_04 | AC | 539 ms
6,676 KB |
testcase_05 | AC | 527 ms
6,676 KB |
testcase_06 | AC | 446 ms
6,676 KB |
testcase_07 | AC | 498 ms
6,676 KB |
testcase_08 | AC | 435 ms
6,676 KB |
testcase_09 | AC | 579 ms
6,676 KB |
testcase_10 | AC | 550 ms
6,676 KB |
testcase_11 | AC | 502 ms
6,676 KB |
testcase_12 | AC | 451 ms
6,676 KB |
testcase_13 | AC | 447 ms
6,676 KB |
testcase_14 | AC | 494 ms
6,676 KB |
testcase_15 | AC | 499 ms
6,676 KB |
testcase_16 | AC | 459 ms
6,676 KB |
testcase_17 | AC | 460 ms
6,676 KB |
testcase_18 | AC | 437 ms
6,676 KB |
testcase_19 | AC | 566 ms
6,676 KB |
testcase_20 | AC | 479 ms
6,676 KB |
testcase_21 | AC | 460 ms
6,676 KB |
testcase_22 | AC | 482 ms
6,676 KB |
testcase_23 | AC | 505 ms
6,676 KB |
testcase_24 | AC | 590 ms
6,676 KB |
testcase_25 | AC | 498 ms
6,676 KB |
testcase_26 | AC | 456 ms
6,676 KB |
testcase_27 | AC | 510 ms
6,676 KB |
testcase_28 | AC | 576 ms
6,676 KB |
testcase_29 | AC | 542 ms
6,676 KB |
testcase_30 | AC | 519 ms
6,676 KB |
testcase_31 | AC | 441 ms
6,676 KB |
testcase_32 | AC | 537 ms
6,676 KB |
testcase_33 | AC | 484 ms
6,676 KB |
testcase_34 | AC | 548 ms
6,676 KB |
testcase_35 | AC | 464 ms
6,676 KB |
testcase_36 | AC | 464 ms
6,676 KB |
testcase_37 | AC | 478 ms
6,676 KB |
testcase_38 | AC | 471 ms
6,676 KB |
testcase_39 | AC | 497 ms
6,676 KB |
testcase_40 | AC | 509 ms
6,676 KB |
testcase_41 | AC | 513 ms
6,676 KB |
testcase_42 | AC | 441 ms
6,676 KB |
testcase_43 | AC | 481 ms
6,676 KB |
testcase_44 | AC | 479 ms
6,676 KB |
testcase_45 | AC | 468 ms
6,676 KB |
testcase_46 | AC | 569 ms
6,676 KB |
testcase_47 | AC | 536 ms
6,676 KB |
testcase_48 | AC | 493 ms
6,676 KB |
testcase_49 | AC | 478 ms
6,676 KB |
ソースコード
// #pragma GCC target("avx2") #pragma GCC optimize("O3") // #pragma GCC optimize("unroll-loops") #include<bits/stdc++.h> // #include<sys/time.h> // #include<atcoder/segtree> using namespace std; // using mint = atcoder::modint998244353; const int M = 998244353; const long long LM = 1LL << 60; using P = pair<int, int>; pair<vector<P>, long long> solve(vector<long long> a, vector<long long> b, int L) { int n = a.size(); long long T = 500000000000000000LL; auto calc = [&](int i, int j) { return max(abs(a[i] + a[j] - T * 2), abs(b[i] + b[j] - T * 2)); }; vector<P> ans; auto op = [&](int i, int j) { if (i == j) return; if (ans.size() >= 50) return; ans.emplace_back(i, j); auto av = (a[i] + a[j]) / 2; auto bv = (b[i] + b[j]) / 2; a[i] = av; a[j] = av; b[i] = bv; b[j] = bv; }; while ((int)ans.size() < L) { int p = -1, q = -1; for (int i = 0; i < n; ++i) { for (int j = i + 1; j < n; ++j) { if (calc(i, j) < calc(i, i) && calc(i, j) < calc(j, j)) { if (p == -1 || calc(i, j) < calc(p, q)) { p = i; q = j; } } } } if (p == -1) break; op(p, q); } auto greedy = [&]() { while (ans.size() < 50) { int q = 0; for (int i = 1; i < n; ++i) { if (calc(0, q) > calc(0, i)) { q = i; } } if (q == 0) break; op(0, q); } }; auto orig_a = a; auto orig_b = b; auto orig_ans = ans; greedy(); auto best_ans = ans; auto best_score = calc(0, 0); for (int i = 1; i < n; ++i) { a = orig_a; b = orig_b; ans = orig_ans; op(0, i); greedy(); if (best_score > calc(0, 0)) { best_ans = ans; best_score = calc(0, 0); } } for (int i = 1; i < n; ++i) { for (int j = 1; j < n; ++j) { if (i == j) continue; a = orig_a; b = orig_b; ans = orig_ans; op(0, i); op(0, j); greedy(); if (best_score > calc(0, 0)) { best_ans = ans; best_score = calc(0, 0); } } } for (int i = 1; i < n; ++i) { for (int j = 1; j < n; ++j) { if (i == j) continue; for (int k = 1; k < n; ++k) { if (j == k) continue; a = orig_a; b = orig_b; ans = orig_ans; op(0, i); op(0, j); op(0, k); greedy(); if (best_score > calc(0, 0)) { best_ans = ans; best_score = calc(0, 0); } } } } ans = best_ans; return { ans, best_score }; } int main() { cin.tie(0); ios::sync_with_stdio(0); int n; cin >> n; vector<long long> a(n), b(n); for (int i = 0; i < n; ++i) { cin >> a[i] >> b[i]; } vector<P> ans; long long score = LM; for (int i = 10; i <= 40; i += 10) { auto res = solve(a, b, i); if (score > res.second) { ans = res.first; score = res.second; } } if (ans.size() > 50) { ans.resize(50); } cout << ans.size() << '\n'; for (auto& i : ans) { cout << i.first + 1 << ' ' << i.second + 1 << '\n'; } return 0; }