結果

問題 No.2261 Coffee
ユーザー nagisa5101nagisa5101
提出日時 2023-04-07 22:01:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,072 bytes
コンパイル時間 4,429 ms
コンパイル使用メモリ 266,240 KB
実行使用メモリ 32,256 KB
最終ジャッジ日時 2024-10-02 19:31:52
合計ジャッジ時間 22,536 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 WA -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

using namespace std;
using namespace atcoder;

#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define repll(i, n) for (long long i = 0; i < (long long)(n); i++)
#define rep2(i, n, m) for (int i = n; i < (int)(m); i++)
#define repll2(i, n, m) for (long long i = n; i < (long long)(m); i++)
#define all(v) v.begin(),v.end()
using ll=long long;
using ld=long double;
using vi=vector<int>;
using vvi=vector<vi>;
using vvvi=vector<vvi>;
using vl=vector<ll>;
using vvl=vector<vl>;
using vvvl=vector<vvl>;
using vld=vector<ld>;
using vvld=vector<vld>;

int dx[8]={1,0,-1,0,1,1,-1,-1};
int dy[8]={0,1,0,-1,1,-1,1,-1};

const double PI = acos(-1);
//const ll MOD=1e9+7;
//const ll MOD=998244353;
const ll INF=(1LL<<60);
const int INF2=(1<<30);
//using mint=modint1000000007;
//using mint=modint998244353;

int main() {
    ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    ll n;cin>>n;
    vvl arr(n);
    //vector<multiset<ll>> vmst(32);
    vector<vector<ll>> vtop2(32,vl(2,-INF));
    rep(i,n){
        ll a[5];
        rep(j,5)cin>>a[j];
        rep(j,1<<5){
            ll s=0;
            rep(k,5){
                if(j&(1<<k))s+=a[k];
                else s-=a[k];
            }
            //vmst[j].insert(s);
            if(s>=vtop2[j][0]){
                vtop2[j][1]=vtop2[j][0];
                vtop2[j][0]=s;
            }
            else if(s>vtop2[j][1]){
                vtop2[j][1]=s;
            }
            arr[i].push_back(s);
        }
    }
    rep(i,n){
        //rep(j,1<<5){
        //    vmst[j].erase(vmst[j].lower_bound(arr[i][j]));
        //}
        ll ans=-INF;
        rep(j,1<<5){
            ll v=arr[i][j],vs=arr[31-i][j];
            ll u0=vtop2[31-j][0],u1=vtop2[31-j][1];
            if(u0==vs)ans=max(ans,u1+v);
            else ans=max(ans,v+u0);
        }
        cout<<ans<<endl;
        //rep(j,1<<5){
        //    vmst[j].insert(arr[i][j]);
        //}
    }
    return 0;
}
0