結果

問題 No.2261 Coffee
ユーザー t98slidert98slider
提出日時 2023-04-07 22:04:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 702 ms / 2,000 ms
コード長 1,562 bytes
コンパイル時間 2,263 ms
コンパイル使用メモリ 179,976 KB
実行使用メモリ 11,064 KB
最終ジャッジ日時 2024-10-02 19:33:50
合計ジャッジ時間 17,218 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 3 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 16 ms
5,248 KB
testcase_18 AC 15 ms
5,248 KB
testcase_19 AC 13 ms
5,248 KB
testcase_20 AC 12 ms
5,248 KB
testcase_21 AC 16 ms
5,248 KB
testcase_22 AC 13 ms
5,248 KB
testcase_23 AC 17 ms
5,248 KB
testcase_24 AC 644 ms
10,352 KB
testcase_25 AC 556 ms
9,344 KB
testcase_26 AC 702 ms
10,896 KB
testcase_27 AC 643 ms
10,296 KB
testcase_28 AC 384 ms
9,648 KB
testcase_29 AC 378 ms
9,472 KB
testcase_30 AC 297 ms
8,088 KB
testcase_31 AC 486 ms
11,060 KB
testcase_32 AC 492 ms
11,060 KB
testcase_33 AC 487 ms
10,932 KB
testcase_34 AC 486 ms
10,932 KB
testcase_35 AC 492 ms
10,932 KB
testcase_36 AC 492 ms
10,928 KB
testcase_37 AC 491 ms
11,064 KB
testcase_38 AC 695 ms
11,056 KB
testcase_39 AC 693 ms
10,936 KB
testcase_40 AC 697 ms
10,928 KB
testcase_41 AC 694 ms
10,984 KB
testcase_42 AC 699 ms
10,936 KB
testcase_43 AC 695 ms
11,064 KB
testcase_44 AC 700 ms
10,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int N;
    cin >> N;
    vector<array<ll, 5>> a(N);
    vector<ll> ans(N, -(1ll << 60));
    for(int i = 0; i < N; i++){
        for(int j = 0; j < 5; j++){
            cin >> a[i][j];
        }
    }
    for(int i = 0; i < 32; i++){
        vector<pair<ll,ll>> b(N);
        for(int j = 0; j < N; j++){
            ll x = 0, y = 0;
            for(int k = 0; k < 5; k++){
                if(i >> k & 1) x += a[j][k];
                else y += a[j][k];
            }
            b[j] = make_pair(x, y);
        }
        auto c = b;
        sort(c.begin(), c.end(), [&](pair<ll,ll> lhs, pair<ll,ll> rhs){
            return lhs.first + lhs.second < rhs.first + rhs.second;
        });
        ll mn = c[0].first + c[0].second, mx = c[N - 1].first + c[N - 1].second;
        for(int j = 0; j < N; j++){
            ll v = b[j].first + b[j].second;
            ans[j] = max(ans[j], abs(mn - v));
            ans[j] = max(ans[j], abs(mx - v));
        }
        sort(c.begin(), c.end(), [&](pair<ll,ll> lhs, pair<ll,ll> rhs){
            return lhs.first - lhs.second < rhs.first - rhs.second;
        });
        mn = c[0].first - c[0].second, mx = c[N - 1].first - c[N - 1].second;
        for(int j = 0; j < N; j++){
            ll v = b[j].first - b[j].second;
            ans[j] = max(ans[j], abs(mn - v));
            ans[j] = max(ans[j], abs(mx - v));
        }
    }
    for(int i = 0; i < N; i++) cout << ans[i] << '\n';
}
0