結果
問題 | No.5020 Averaging |
ユーザー | りあん |
提出日時 | 2024-02-25 14:12:51 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 3,666 bytes |
コンパイル時間 | 4,992 ms |
コンパイル使用メモリ | 293,932 KB |
実行使用メモリ | 6,676 KB |
スコア | 16,926,404 |
最終ジャッジ日時 | 2024-02-25 14:13:50 |
合計ジャッジ時間 | 58,348 ms |
ジャッジサーバーID (参考情報) |
judge11 / judge14 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | AC | 999 ms
6,548 KB |
testcase_02 | AC | 976 ms
6,548 KB |
testcase_03 | AC | 960 ms
6,548 KB |
testcase_04 | AC | 993 ms
6,548 KB |
testcase_05 | AC | 993 ms
6,548 KB |
testcase_06 | AC | 886 ms
6,548 KB |
testcase_07 | TLE | - |
testcase_08 | AC | 935 ms
6,548 KB |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | AC | 871 ms
6,548 KB |
testcase_13 | AC | 885 ms
6,548 KB |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | AC | 907 ms
6,548 KB |
testcase_17 | AC | 900 ms
6,548 KB |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | AC | 916 ms
6,548 KB |
testcase_21 | TLE | - |
testcase_22 | AC | 988 ms
6,548 KB |
testcase_23 | TLE | - |
testcase_24 | AC | 962 ms
6,548 KB |
testcase_25 | AC | 988 ms
6,548 KB |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | AC | 901 ms
6,548 KB |
testcase_32 | TLE | - |
testcase_33 | AC | 954 ms
6,548 KB |
testcase_34 | TLE | - |
testcase_35 | TLE | - |
testcase_36 | AC | 917 ms
6,548 KB |
testcase_37 | TLE | - |
testcase_38 | TLE | - |
testcase_39 | TLE | - |
testcase_40 | TLE | - |
testcase_41 | AC | 985 ms
6,548 KB |
testcase_42 | TLE | - |
testcase_43 | AC | 950 ms
6,548 KB |
testcase_44 | TLE | - |
testcase_45 | TLE | - |
testcase_46 | AC | 985 ms
6,548 KB |
testcase_47 | AC | 980 ms
6,548 KB |
testcase_48 | TLE | - |
testcase_49 | TLE | - |
ソースコード
// #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>; 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]; } 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; }; // auto calc2 = [&](int i, int j) { // return abs(a[i] + a[j] - T * 2) + abs(b[i] + b[j] - T * 2); // }; while (ans.size() < 40) { vector<P> idx; 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 (calc(i, j) * 2 < calc(i, i) + calc(j, j)) { idx.emplace_back(i, j); } } } if (idx.empty()) break; sort(idx.begin(), idx.end(), [&](const P& i, const P& j) { return calc(i.first, i.second) < calc(j.first, j.second); }); int p = idx.front().first; int q = idx.front().second; op(p, q); } auto greedy = [&]() { while (ans.size() < 50) { vector<int> idx; for (int i = 0; i < n; ++i) { idx.emplace_back(i); } sort(idx.begin(), idx.end(), [&](int i, int j) { return calc(0, i) < calc(0, j); }); int p = 0; int q = idx.front(); if (q == 0) break; op(p, 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) { 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) { for (int k = 1; k < n; ++k) { 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; cerr << best_score / 2 << '\n'; 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; }