結果
問題 | No.2261 Coffee |
ユーザー | kztasa |
提出日時 | 2023-04-08 16:14:23 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 533 ms / 2,000 ms |
コード長 | 4,075 bytes |
コンパイル時間 | 4,255 ms |
コンパイル使用メモリ | 240,060 KB |
実行使用メモリ | 78,816 KB |
最終ジャッジ日時 | 2024-10-03 11:54:52 |
合計ジャッジ時間 | 17,876 ms |
ジャッジサーバーID (参考情報) |
judge4 / 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 | 3 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 | 3 ms
5,248 KB |
testcase_12 | AC | 3 ms
5,248 KB |
testcase_13 | AC | 3 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,120 KB |
testcase_17 | AC | 15 ms
5,760 KB |
testcase_18 | AC | 14 ms
5,632 KB |
testcase_19 | AC | 14 ms
5,632 KB |
testcase_20 | AC | 12 ms
5,632 KB |
testcase_21 | AC | 16 ms
5,760 KB |
testcase_22 | AC | 12 ms
5,504 KB |
testcase_23 | AC | 16 ms
5,632 KB |
testcase_24 | AC | 505 ms
78,056 KB |
testcase_25 | AC | 441 ms
77,008 KB |
testcase_26 | AC | 504 ms
78,636 KB |
testcase_27 | AC | 497 ms
78,116 KB |
testcase_28 | AC | 414 ms
77,532 KB |
testcase_29 | AC | 410 ms
77,400 KB |
testcase_30 | AC | 293 ms
41,980 KB |
testcase_31 | AC | 489 ms
78,688 KB |
testcase_32 | AC | 487 ms
78,688 KB |
testcase_33 | AC | 486 ms
78,692 KB |
testcase_34 | AC | 485 ms
78,688 KB |
testcase_35 | AC | 480 ms
78,688 KB |
testcase_36 | AC | 481 ms
78,684 KB |
testcase_37 | AC | 483 ms
78,688 KB |
testcase_38 | AC | 528 ms
78,688 KB |
testcase_39 | AC | 525 ms
78,564 KB |
testcase_40 | AC | 502 ms
78,816 KB |
testcase_41 | AC | 525 ms
78,688 KB |
testcase_42 | AC | 529 ms
78,816 KB |
testcase_43 | AC | 523 ms
78,692 KB |
testcase_44 | AC | 533 ms
78,688 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> #define pub push_back #define eb emplace_back #define mp make_pair #define fi first #define se second #define rep(i, n) rep2(i, 0, n) #define rep2(i, m, n) for (ll i = m; i < (n); i++) #define per(i, b) per2(i, 0, b) #define per2(i, a, b) for (ll i = int(b) - 1; i >= int(a); i--) #define all(c) (c).begin(), (c).end() using namespace std; using namespace atcoder; using ll = long long; using dd = double; using Pll = pair<ll, ll>; using vll = vector< ll>; using vdd = vector< dd>; using vvll = vector< vll>; using vvdd = vector<vdd>; using vvvll = vector< vvll>; using vvvdd = vector<vvdd>; using vvvvll = vector<vvvll>; using vchar = vector< char>; using vvchar = vector<vchar>; using mint = modint998244353; using mint2 = modint1000000007; using vmint = vector< mint>; using vmint2 = vector< mint2>; using vvmint = vector<vmint>; using vvmint2 = vector<vmint2>; constexpr long long INF = (1LL << 60); constexpr double EPS = 1e-9; constexpr double PI = 3.141592653589; ////////////////////////////////////////////////////////// template <typename T> bool chmax(T& a, const T& b) { if (a < b) { a = b; // aをbで更新 return true; } return false; } template <typename T> bool chmin(T& a, const T& b) { if (a > b) { a = b; // aをbで更新 return true; } return false; } string zfill(int n, const int width) { stringstream ss; ss << setw(width) << setfill('0') << n; return ss.str(); } //1+2+3+…+N ll OnetoN_sum(ll N) { return (N * (N + 1)) / 2; } template<typename T> void outvec(vector<T> A) { ll N = A.size(); rep(i, N) { cout << A[i] << " "; } cout << endl; return; } ll max(int x, ll y) { return max((ll)x, y); } ll max(ll x, int y) { return max(x, (ll)y); } int min(int x, ll y) { return min((ll)x, y); } int min(ll x, int y) { return min(x, (ll)y); } template<typename T = int> std::map<T, ll> factorize(T n) { std::map<T, ll> factor_map; for (T i = 2; i * i <= n; i++) { while (!(n % i)) { factor_map[i]++; n /= i; } } if (n > 1) factor_map[n]++; return factor_map; } template<typename T = int> vector<long long> divisor(T n) { vector<long long> ret; for (long long i = 1; i * i <= n; i++) { if (n % i == 0) { ret.push_back(i); if (i * i != n) ret.push_back(n / i); } } sort(ret.begin(), ret.end()); // 昇順に並べる return ret; } template<typename T = int> bool isp(T num) { if (num < 2) return false; else if (num == 2) return true; else if (num % 2 == 0) return false; double sqrtNum = sqrt(num); for (int i = 3; i <= sqrtNum; i += 2) { if (num % i == 0) { return false; } } return true; } template<typename T = int> vector<bool> Era(ll N) { vector<bool> isprime(N + 1, true); isprime[0] = isprime[1] = false; for (ll p = 2; p <= N; ++p) { if (!isprime[p]) continue; for (ll q = p * 2; q <= N; q += p) { isprime[q] = false; } } return isprime; } ll LIS(const std::vector<ll>& v) { std::vector<ll> dp; for (const auto& elem : v) { auto it = std::lower_bound(dp.begin(), dp.end(), elem); if (it == dp.end()) { dp.push_back(elem); } else { *it = elem; } } return dp.size(); } ///////////////////////////////////////////////////// //op:二項演算 e:単位元 //range max query ll op(ll a, ll b) { return max(a, b); } ll e() { return -INF; } int main() { //cout << fixed << setprecision(10); ios::sync_with_stdio(false); cin.tie(nullptr); ll N; cin >> N; vvll A(N, vll(5)); rep(i, N) { rep(j, 5) { cin >> A[i][j]; } } vector<segtree<ll, op, e>> c(32); rep(i, 32) { segtree<ll, op, e> seg(N); rep(j, N) { ll p = 0; rep(k, 5) { if ((i & (1 << k)) == 1 << k) { p += A[j][k]; } else { p -= A[j][k]; } } seg.set(j, p); } c[i] = seg; } rep(i, N) { ll ans = 0; rep(j, 32) { ll sum = 0; rep(k, 5) { if ((j & (1 << k)) == 1 << k) { sum += A[i][k]; } else { sum -= A[i][k]; } } ll J = j ^ 31; sum += c[J].prod(0, N); chmax(ans, sum); } cout << ans << endl; } }