結果

問題 No.2261 Coffee
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2023-04-07 22:46:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 425 ms / 2,000 ms
コード長 850 bytes
コンパイル時間 2,111 ms
コンパイル使用メモリ 201,228 KB
実行使用メモリ 28,672 KB
最終ジャッジ日時 2024-10-02 20:08:11
合計ジャッジ時間 11,642 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 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 13 ms
5,248 KB
testcase_18 AC 12 ms
5,248 KB
testcase_19 AC 13 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 13 ms
5,248 KB
testcase_24 AC 381 ms
26,752 KB
testcase_25 AC 323 ms
23,424 KB
testcase_26 AC 413 ms
28,416 KB
testcase_27 AC 389 ms
26,496 KB
testcase_28 AC 192 ms
24,320 KB
testcase_29 AC 189 ms
23,936 KB
testcase_30 AC 150 ms
19,584 KB
testcase_31 AC 254 ms
28,544 KB
testcase_32 AC 249 ms
28,544 KB
testcase_33 AC 246 ms
28,544 KB
testcase_34 AC 244 ms
28,544 KB
testcase_35 AC 247 ms
28,544 KB
testcase_36 AC 245 ms
28,672 KB
testcase_37 AC 247 ms
28,544 KB
testcase_38 AC 425 ms
28,544 KB
testcase_39 AC 412 ms
28,544 KB
testcase_40 AC 417 ms
28,544 KB
testcase_41 AC 410 ms
28,544 KB
testcase_42 AC 416 ms
28,544 KB
testcase_43 AC 413 ms
28,544 KB
testcase_44 AC 409 ms
28,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
int main () {
    int N;
    cin >> N;
    ll A[1 << 5][200020];
    ll B[1 << 5][2];
    for (int i = 0; i < N; i ++) {
        ll X[5];
        for (int j = 0; j < 5; j ++) {
            cin >> X[j];
        }
        for (int pk = 0; pk < (1 << 5); pk ++) {
            A[pk][i] = 0;
            for (int j = 0; j < 5; j ++) {
                A[pk][i] += X[j] * (((pk >> j) & 1) ? 1 : -1);
            }
        }
    }
    for (int i = 0; i < (1 << 5); i ++) {
        B[i][0] = *max_element(A[i], A[i] + N);
        B[i][1] = *min_element(A[i], A[i] + N);
    }
    for (int i = 0; i < N; i ++) {
        ll ans = 0;
        for (int j = 0; j < (1 << 5); j ++) {
            ans = max({ans, A[j][i] - B[j][1], B[j][0] - A[j][i]});
        }
        cout << ans << endl;
    }
}
0