結果

問題 No.2261 Coffee
ユーザー simansiman
提出日時 2023-04-08 20:15:20
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 442 ms / 2,000 ms
コード長 936 bytes
コンパイル時間 1,600 ms
コンパイル使用メモリ 143,996 KB
実行使用メモリ 8,736 KB
最終ジャッジ日時 2024-10-03 17:14:37
合計ジャッジ時間 12,238 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 2 ms
6,820 KB
testcase_15 AC 2 ms
6,820 KB
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 14 ms
6,820 KB
testcase_18 AC 13 ms
6,816 KB
testcase_19 AC 11 ms
6,816 KB
testcase_20 AC 10 ms
6,820 KB
testcase_21 AC 13 ms
6,820 KB
testcase_22 AC 11 ms
6,816 KB
testcase_23 AC 14 ms
6,820 KB
testcase_24 AC 407 ms
8,280 KB
testcase_25 AC 348 ms
7,508 KB
testcase_26 AC 437 ms
8,560 KB
testcase_27 AC 405 ms
8,112 KB
testcase_28 AC 195 ms
7,592 KB
testcase_29 AC 191 ms
7,528 KB
testcase_30 AC 148 ms
6,816 KB
testcase_31 AC 249 ms
8,736 KB
testcase_32 AC 249 ms
8,500 KB
testcase_33 AC 249 ms
8,684 KB
testcase_34 AC 250 ms
8,556 KB
testcase_35 AC 248 ms
8,608 KB
testcase_36 AC 243 ms
8,496 KB
testcase_37 AC 250 ms
8,668 KB
testcase_38 AC 440 ms
8,680 KB
testcase_39 AC 438 ms
8,496 KB
testcase_40 AC 439 ms
8,520 KB
testcase_41 AC 441 ms
8,576 KB
testcase_42 AC 442 ms
8,572 KB
testcase_43 AC 437 ms
8,552 KB
testcase_44 AC 440 ms
8,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <climits>
#include <map>
#include <queue>
#include <set>
#include <cstring>
#include <vector>

using namespace std;
typedef long long ll;

int main() {
  int N;
  cin >> N;

  ll X[N][5];
  for (int i = 0; i < N; ++i) {
    for (int j = 0; j < 5; ++j) {
      cin >> X[i][j];
    }
  }

  vector<ll> ans(N, LLONG_MIN);

  for (int mask = 0; mask < (1 << 5); ++mask) {
    ll V[N];
    memset(V, 0, sizeof(V));
    ll min_v = LLONG_MAX;

    for (int i = 0; i < N; ++i) {
      for (int j = 0; j < 5; ++j) {
        if (mask >> j & 1) {
          V[i] += X[i][j];
        } else {
          V[i] -= X[i][j];
        }
      }

      min_v = min(min_v, V[i]);
    }

    for (int i = 0; i < N; ++i) {
      ans[i] = max(ans[i], V[i] - min_v);
    }
  }

  for (int i = 0; i < N; ++i) {
    cout << ans[i] << endl;
  }

  return 0;
}
0