結果

問題 No.2261 Coffee
ユーザー ripityripity
提出日時 2023-04-07 21:46:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 237 ms / 2,000 ms
コード長 910 bytes
コンパイル時間 5,555 ms
コンパイル使用メモリ 301,624 KB
実行使用メモリ 32,256 KB
最終ジャッジ日時 2024-04-27 04:35:52
合計ジャッジ時間 12,876 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 3 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 4 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 11 ms
6,940 KB
testcase_18 AC 12 ms
6,944 KB
testcase_19 AC 10 ms
6,944 KB
testcase_20 AC 6 ms
6,940 KB
testcase_21 AC 8 ms
6,940 KB
testcase_22 AC 7 ms
6,944 KB
testcase_23 AC 8 ms
6,940 KB
testcase_24 AC 216 ms
30,080 KB
testcase_25 AC 192 ms
26,240 KB
testcase_26 AC 226 ms
32,000 KB
testcase_27 AC 208 ms
29,824 KB
testcase_28 AC 160 ms
27,520 KB
testcase_29 AC 157 ms
27,008 KB
testcase_30 AC 125 ms
21,760 KB
testcase_31 AC 200 ms
32,128 KB
testcase_32 AC 196 ms
32,232 KB
testcase_33 AC 195 ms
32,128 KB
testcase_34 AC 196 ms
32,256 KB
testcase_35 AC 195 ms
32,128 KB
testcase_36 AC 190 ms
32,128 KB
testcase_37 AC 193 ms
32,256 KB
testcase_38 AC 229 ms
32,128 KB
testcase_39 AC 227 ms
32,128 KB
testcase_40 AC 231 ms
32,256 KB
testcase_41 AC 237 ms
32,256 KB
testcase_42 AC 224 ms
32,256 KB
testcase_43 AC 225 ms
32,256 KB
testcase_44 AC 218 ms
32,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
int main() {
	cin.tie(0);
	ios::sync_with_stdio(false);
	int N;
	cin >> N;
	vector<long long> X_min(1<<5, 1LL<<60), X_max(1<<5, -(1LL<<60));
	vector<vector<long long>> X(N, vector<long long>(1<<5));
	for( int i = 0; i < N; i++ ) {
		vector<long long> Y(5);
		cin >> Y[0] >> Y[1] >> Y[2] >> Y[3] >> Y[4];
		for( int S = 0; S < (1<<5); S++ ) {
			for( int j = 0; j < 5; j++ ) {
				if( (S>>j)&1 ) {
					X[i][S] += Y[j];
				}else {
					X[i][S] -= Y[j];
				}
			}
			X_min[S] = min(X_min[S], X[i][S]);
			X_max[S] = max(X_max[S], X[i][S]);
		}
	}
	for( int i = 0; i < N; i++ ) {
		long long ans = 0;
		for( int S = 0; S < (1<<5); S++ ) {
			ans = max({ans, X_max[S]-X[i][S], X[i][S]-X_min[S]});
		}
		cout << ans << endl;
	}
}
0