結果

問題 No.2261 Coffee
ユーザー lddlinanlddlinan
提出日時 2023-04-07 22:23:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 273 ms / 2,000 ms
コード長 1,392 bytes
コンパイル時間 773 ms
コンパイル使用メモリ 88,796 KB
実行使用メモリ 9,472 KB
最終ジャッジ日時 2024-10-02 19:51:34
合計ジャッジ時間 8,154 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 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 3 ms
5,248 KB
testcase_11 AC 3 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 3 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 9 ms
5,248 KB
testcase_18 AC 8 ms
5,248 KB
testcase_19 AC 8 ms
5,248 KB
testcase_20 AC 7 ms
5,248 KB
testcase_21 AC 8 ms
5,248 KB
testcase_22 AC 7 ms
5,248 KB
testcase_23 AC 9 ms
5,248 KB
testcase_24 AC 247 ms
9,088 KB
testcase_25 AC 211 ms
8,064 KB
testcase_26 AC 265 ms
9,416 KB
testcase_27 AC 245 ms
8,960 KB
testcase_28 AC 141 ms
8,448 KB
testcase_29 AC 138 ms
8,192 KB
testcase_30 AC 107 ms
7,040 KB
testcase_31 AC 183 ms
9,472 KB
testcase_32 AC 182 ms
9,292 KB
testcase_33 AC 182 ms
9,288 KB
testcase_34 AC 182 ms
9,284 KB
testcase_35 AC 179 ms
9,344 KB
testcase_36 AC 184 ms
9,344 KB
testcase_37 AC 182 ms
9,216 KB
testcase_38 AC 271 ms
9,216 KB
testcase_39 AC 269 ms
9,344 KB
testcase_40 AC 269 ms
9,284 KB
testcase_41 AC 268 ms
9,416 KB
testcase_42 AC 273 ms
9,284 KB
testcase_43 AC 269 ms
9,292 KB
testcase_44 AC 268 ms
9,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include <map>
#include <vector>
#include <queue>
#include <deque>
#include <set>
#include <stack>
#include <algorithm>
#include <array>
#include <unordered_set>
#include <unordered_map>
#include <string>
using namespace std;

bool rcmp(int a, int b) { return a>b; }
typedef long long LL;
class mypcmp {
public:
    bool operator()(const int& a, const int& b) {
        return a<b;
    }
};



LL as[100004];
LL bs[100004];
LL cs[100004];
LL ds[100004];
LL es[100004];
LL rs[100004];
typedef struct { LL v; int i; } SNode;
SNode sg[100004];
bool mycmp(const SNode& a, const SNode& b) { return a.v<b.v; }
int main() {
    int n, i, k;
    LL v, d;
    scanf("%d", &n);
    for (i=0; i<n; i++) scanf("%lld %lld %lld %lld %lld", &as[i], &bs[i], &cs[i], &ds[i], &es[i]);
    for (i=0; i<n; i++) rs[i]=0;
    for (k=0; k<16; k++) {
        for (i=0; i<n; i++) {
            v=as[i]; if (k&1) v-=bs[i]; else v+=bs[i];
            if (k&2) v-=cs[i]; else v+=cs[i];
            if (k&4) v-=ds[i]; else v+=ds[i];
            if (k&8) v-=es[i]; else v+=es[i];
            sg[i].v=v; sg[i].i=i;
        }
        sort(sg, sg+n, mycmp);
        for (i=0; i<n; i++) {
            d=max(sg[i].v-sg[0].v, sg[n-1].v-sg[i].v);
            rs[sg[i].i]=max(d, rs[sg[i].i]);
        }
    }
    for (i=0; i<n; i++) printf("%lld\n", rs[i]);
    return 0;
}
0