結果

問題 No.2261 Coffee
ユーザー boatmusclesboatmuscles
提出日時 2023-04-08 14:35:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 1,443 bytes
コンパイル時間 3,540 ms
コンパイル使用メモリ 261,220 KB
実行使用メモリ 32,660 KB
最終ジャッジ日時 2024-10-03 09:31:25
合計ジャッジ時間 10,679 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 1 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,820 KB
testcase_09 AC 2 ms
6,820 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,820 KB
testcase_14 AC 2 ms
6,820 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 2 ms
6,820 KB
testcase_17 AC 6 ms
6,816 KB
testcase_18 AC 5 ms
6,816 KB
testcase_19 AC 5 ms
7,880 KB
testcase_20 AC 5 ms
6,820 KB
testcase_21 AC 6 ms
6,816 KB
testcase_22 AC 4 ms
6,816 KB
testcase_23 AC 6 ms
7,880 KB
testcase_24 AC 123 ms
32,352 KB
testcase_25 AC 107 ms
29,792 KB
testcase_26 AC 130 ms
32,444 KB
testcase_27 AC 119 ms
32,144 KB
testcase_28 AC 83 ms
29,916 KB
testcase_29 AC 80 ms
29,860 KB
testcase_30 AC 62 ms
24,260 KB
testcase_31 AC 98 ms
32,460 KB
testcase_32 AC 97 ms
32,660 KB
testcase_33 AC 101 ms
32,488 KB
testcase_34 AC 99 ms
32,480 KB
testcase_35 AC 98 ms
32,436 KB
testcase_36 AC 96 ms
32,560 KB
testcase_37 AC 109 ms
32,548 KB
testcase_38 AC 139 ms
32,472 KB
testcase_39 AC 129 ms
32,496 KB
testcase_40 AC 140 ms
32,508 KB
testcase_41 AC 129 ms
32,588 KB
testcase_42 AC 129 ms
32,476 KB
testcase_43 AC 132 ms
32,632 KB
testcase_44 AC 129 ms
32,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/extc++.h>
//#include<bits/stdc++.h>
using namespace std;
using ll = long long;
using ull = unsigned long long;
#define rep(i, n) for (int i = 0; i < (int)(n); ++i)
#define rrep(i, n) for (int i = (int)(n)-1; i >= 0; --i)
#define rep2(i, a, b) for (int i = (int)a; i < (int)(b); ++i)
#define rrep2(i, a, b) for (int i = (int)(b)-1; i >= (int)(a); --i)
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
constexpr int MAX_N = 100000;
constexpr ll INF = 6000000000000000;
ll A[MAX_N][5];
ll min_right[MAX_N][32];
int main(){
    int N;
    scanf("%d", &N);
    rep(i, N) rep(j, 5) scanf("%lld", &A[i][j]);
    fill(min_right[N-1],min_right[N-1]+32,INF);
    rrep(i, N){
        if(i){
            copy(min_right[i],min_right[i]+32,min_right[i-1]);
            rep(j, 32){
                ll sum = 0;
                rep(k, 5) sum += j>>k&1 ? A[i][k] : -A[i][k];
                chmin(min_right[i-1][j], sum);
            }
        }
    }
    ll min_left[32];
    fill(min_left,min_left+32,INF);
    rep(i, N){
        ll ans = 0;
        rep(j, 32){
            ll sum = 0;
            rep(k, 5) sum += j>>k&1 ? A[i][k] : -A[i][k];
            chmax(ans, sum - min(min_left[j], min_right[i][j]));
            chmin(min_left[j], sum);
        }
        printf("%lld\n", ans);
    }
    return 0;
}
0