結果

問題 No.2261 Coffee
ユーザー mtrhmtrh
提出日時 2023-04-07 23:08:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 471 ms / 2,000 ms
コード長 1,250 bytes
コンパイル時間 2,025 ms
コンパイル使用メモリ 209,092 KB
実行使用メモリ 40,064 KB
最終ジャッジ日時 2024-10-02 20:25:11
合計ジャッジ時間 12,386 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 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 1 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 1 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 2 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 14 ms
5,248 KB
testcase_18 AC 12 ms
5,248 KB
testcase_19 AC 11 ms
5,248 KB
testcase_20 AC 10 ms
5,248 KB
testcase_21 AC 13 ms
5,248 KB
testcase_22 AC 10 ms
5,248 KB
testcase_23 AC 14 ms
5,248 KB
testcase_24 AC 406 ms
37,376 KB
testcase_25 AC 357 ms
32,512 KB
testcase_26 AC 446 ms
39,680 KB
testcase_27 AC 404 ms
36,992 KB
testcase_28 AC 223 ms
33,920 KB
testcase_29 AC 216 ms
33,280 KB
testcase_30 AC 167 ms
26,752 KB
testcase_31 AC 279 ms
39,936 KB
testcase_32 AC 287 ms
39,936 KB
testcase_33 AC 278 ms
39,936 KB
testcase_34 AC 284 ms
40,064 KB
testcase_35 AC 290 ms
39,936 KB
testcase_36 AC 278 ms
39,936 KB
testcase_37 AC 276 ms
39,936 KB
testcase_38 AC 450 ms
39,936 KB
testcase_39 AC 440 ms
39,936 KB
testcase_40 AC 471 ms
40,064 KB
testcase_41 AC 457 ms
39,936 KB
testcase_42 AC 448 ms
39,936 KB
testcase_43 AC 446 ms
39,936 KB
testcase_44 AC 450 ms
40,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

vector<ll> c(vector<ll> &p) {
    int k = p.size();
    vector<ll> res;
    for (int bit = 0; bit < (1 << k); bit++) {
        ll tmp = 0;
        for (int i = 0; i < k; i++) {
            if (bit & (1 << i)) {
                tmp += p[i];
            } else {
                tmp -= p[i];
            }
        }
        res.push_back(tmp);
    }
    return res;
}

int main() {
    int N;
    cin >> N;
    vector<vector<ll>> param(N, vector<ll>(5));
    for (int i = 0; i < N; i++) {
        for (int j = 0; j < 5; j++) {
            cin >> param[i][j];
        }
    }
    ll inf = 1LL << 60;
    vector<ll> m(32, inf), M(32, -inf);
    vector<vector<ll>> chs(N);
    for (int i = 0; i < N; i++) {
        auto ch = c(param[i]);
        chs[i] = ch;
        for (int j = 0; j < 32; j++) {
            m[j] = min(m[j], ch[j]);
            M[j] = max(M[j], ch[j]);
        }
    }
    vector<ll> ans(N);
    for (int k = 0; k < N; k++) {
        for (int j = 0; j < 32; j++) {
            ans[k] =
                max({ans[k], abs(chs[k][j] - m[j]), abs(chs[k][j] - M[j])});
        }
    }
    for (int i = 0; i < N; i++) {
        cout << ans[i] << endl;
    }
    return 0;
}
0