結果

問題 No.2261 Coffee
ユーザー twooimp2twooimp2
提出日時 2024-02-23 16:59:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 199 ms / 2,000 ms
コード長 954 bytes
コンパイル時間 5,704 ms
コンパイル使用メモリ 306,620 KB
実行使用メモリ 12,008 KB
最終ジャッジ日時 2024-09-29 05:12:05
合計ジャッジ時間 13,921 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 1 ms
6,820 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 1 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 1 ms
6,816 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,820 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,820 KB
testcase_17 AC 7 ms
6,820 KB
testcase_18 AC 7 ms
6,816 KB
testcase_19 AC 6 ms
6,820 KB
testcase_20 AC 6 ms
6,816 KB
testcase_21 AC 7 ms
6,816 KB
testcase_22 AC 6 ms
6,816 KB
testcase_23 AC 7 ms
6,820 KB
testcase_24 AC 185 ms
11,328 KB
testcase_25 AC 157 ms
10,160 KB
testcase_26 AC 195 ms
11,820 KB
testcase_27 AC 181 ms
11,136 KB
testcase_28 AC 135 ms
10,468 KB
testcase_29 AC 126 ms
10,196 KB
testcase_30 AC 100 ms
8,724 KB
testcase_31 AC 158 ms
11,880 KB
testcase_32 AC 162 ms
12,008 KB
testcase_33 AC 161 ms
11,884 KB
testcase_34 AC 160 ms
11,880 KB
testcase_35 AC 154 ms
12,008 KB
testcase_36 AC 154 ms
11,884 KB
testcase_37 AC 167 ms
11,816 KB
testcase_38 AC 197 ms
12,008 KB
testcase_39 AC 199 ms
12,008 KB
testcase_40 AC 195 ms
11,880 KB
testcase_41 AC 191 ms
12,008 KB
testcase_42 AC 196 ms
11,884 KB
testcase_43 AC 190 ms
12,008 KB
testcase_44 AC 198 ms
11,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//https://naoyat.hatenablog.jp/entry/k-dimension-manhattan-distance
#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include<bits/stdc++.h>
#include<atcoder/all>
using namespace std;
using namespace atcoder;
using ll=long long;

void IO(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
}

int main(){
  IO();
  ll n;
  cin>>n;
  vector<vector<ll>> info(n,vector<ll>(5));
  for(ll i=0;i<n;i++){
    for(ll j=0;j<5;j++){
      cin>>info[i][j];
    }
  }
  vector<ll> ans(n);
  for(ll b=0;b<(1<<4);b++){
    ll mx=-1e18;
    ll mn=1e18;
    vector<ll> v(n);
    for(ll i=0;i<n;i++){
      for(ll j=0;j<5;j++){
        if(b&(1<<j)){
          v[i]+=info[i][j];
        }else{
          v[i]-=info[i][j];
        }
      }
      mx=max(mx,v[i]);
      mn=min(mn,v[i]);
    }
    for(ll i=0;i<n;i++){
      ans[i]=max({ans[i],v[i]-mn,mx-v[i]});
    }
  }
  for(ll i=0;i<n;i++){
    cout<<ans[i]<<endl;
  }
}
0