結果

問題 No.2261 Coffee
ユーザー HaaHaa
提出日時 2023-04-07 21:35:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 688 ms / 2,000 ms
コード長 1,113 bytes
コンパイル時間 1,757 ms
コンパイル使用メモリ 179,188 KB
実行使用メモリ 11,968 KB
最終ジャッジ日時 2024-10-02 19:07:52
合計ジャッジ時間 17,656 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 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 20 ms
5,248 KB
testcase_18 AC 18 ms
5,248 KB
testcase_19 AC 17 ms
5,248 KB
testcase_20 AC 14 ms
5,248 KB
testcase_21 AC 19 ms
5,248 KB
testcase_22 AC 15 ms
6,820 KB
testcase_23 AC 20 ms
6,816 KB
testcase_24 AC 642 ms
11,212 KB
testcase_25 AC 565 ms
10,112 KB
testcase_26 AC 681 ms
11,788 KB
testcase_27 AC 627 ms
11,144 KB
testcase_28 AC 466 ms
10,428 KB
testcase_29 AC 451 ms
10,300 KB
testcase_30 AC 355 ms
8,704 KB
testcase_31 AC 579 ms
11,968 KB
testcase_32 AC 586 ms
11,836 KB
testcase_33 AC 586 ms
11,840 KB
testcase_34 AC 570 ms
11,840 KB
testcase_35 AC 568 ms
11,840 KB
testcase_36 AC 575 ms
11,816 KB
testcase_37 AC 589 ms
11,860 KB
testcase_38 AC 682 ms
11,836 KB
testcase_39 AC 683 ms
11,840 KB
testcase_40 AC 684 ms
11,776 KB
testcase_41 AC 674 ms
11,844 KB
testcase_42 AC 688 ms
11,968 KB
testcase_43 AC 684 ms
11,840 KB
testcase_44 AC 677 ms
11,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef pair<ll,ll> P;
typedef vector<ll> VI;
typedef vector<VI> VVI;
#define REP(i,n) for(int i=0;i<(n);i++)
#define ALL(v) v.begin(),v.end()
template<typename T> bool chmax(T& x, const T& y){return (x<y)?(x=y,true):false;};
template<typename T> bool chmin(T& x, const T& y){return (x>y)?(x=y,true):false;};
constexpr ll MOD=998244353;
constexpr ll INF=2e18;
 
int main(){
    int n; cin >> n;
    VVI a(n,VI(5));
    REP(i,n)REP(j,5) cin >> a[i][j];
    VI b;
    REP(i,1<<5){
        vector<P> p(n);
        REP(j,n){
            ll sum=0;
            REP(k,5){
                if((i>>k)&1)
                    sum+=a[j][k];
                else
                    sum-=a[j][k];
            }
            p[j]={sum,j};
        }
        sort(ALL(p));
        b.push_back(p[n-1].second);
    }
    REP(i,n){
        ll ans=0;
        for(auto j:b){
            ll sum=0;
            REP(k,5){
                sum+=abs(a[i][k]-a[j][k]);
            }
            chmax(ans,sum);
        }
        cout << ans << endl;
    }
    return 0;
}
0