結果
問題 | No.2495 Three Sets |
ユーザー | PAKACHU |
提出日時 | 2023-10-07 00:08:36 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 553 ms / 3,000 ms |
コード長 | 1,639 bytes |
コンパイル時間 | 2,047 ms |
コンパイル使用メモリ | 165,452 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-26 17:30:14 |
合計ジャッジ時間 | 10,614 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 115 ms
6,812 KB |
testcase_01 | AC | 198 ms
6,820 KB |
testcase_02 | AC | 362 ms
6,940 KB |
testcase_03 | AC | 192 ms
6,940 KB |
testcase_04 | AC | 117 ms
6,944 KB |
testcase_05 | AC | 118 ms
6,940 KB |
testcase_06 | AC | 259 ms
6,944 KB |
testcase_07 | AC | 412 ms
6,940 KB |
testcase_08 | AC | 411 ms
6,940 KB |
testcase_09 | AC | 193 ms
6,940 KB |
testcase_10 | AC | 192 ms
6,940 KB |
testcase_11 | AC | 474 ms
6,940 KB |
testcase_12 | AC | 492 ms
6,940 KB |
testcase_13 | AC | 518 ms
6,940 KB |
testcase_14 | AC | 520 ms
6,940 KB |
testcase_15 | AC | 507 ms
6,944 KB |
testcase_16 | AC | 543 ms
6,940 KB |
testcase_17 | AC | 553 ms
6,944 KB |
testcase_18 | AC | 41 ms
6,940 KB |
testcase_19 | AC | 116 ms
6,940 KB |
testcase_20 | AC | 550 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long int ll; typedef unsigned long long ull; typedef long double ld; int dx[8] = { 1, 0, -1, 0, 1, 1, -1, -1 }, dy[8] = { 0, 1, 0, -1, 1, -1, 1, -1 }; const long long mod = 998244353; const ll inf = 1LL << 60; const int INF = 5e8; const int M = 3000; int main() { int na, nb, nc; cin >> na >> nb >> nc; vector<int> a(na), b(nb), c(nc); for (int i = 0; i < na; i++) cin >> a[i]; for (int i = 0; i < nb; i++) cin >> b[i]; for (int i = 0; i < nc; i++) cin >> c[i]; auto conv = [&](vector<int>& v) { vector<int> cnt(2 * M + 1); for (int i = 0; i < (int)v.size(); i++) { cnt[v[i] + M]++; } vector<pair<ll, ll>> res(2 * M + 1); ll sum = 0, cntsum = 0; for (int i = M; i >= -M; i--) { cntsum += cnt[i + M]; sum += cnt[i + M] * i; res[i + M] = { sum, cntsum }; } return res; }; auto va = conv(a); auto vb = conv(b); auto vc = conv(c); auto ceil = [&](ll a, ll b) { if (a > 0) return (a + b - 1) / b; else return a / b; }; ll ans = -inf; for (auto [sb, cb] : vb) { for (auto [sc, cc] : vc) { if (cb == 0) { ans = max(ans, na * sc + sb * cc); } else { ll lim = ceil(-sc, cb); auto [sa, ca] = lim > M ? pair<ll, ll> { 0, 0 } : va[max(0LL, lim + M)]; ans = max(ans, sa * cb + sb * cc + sc * ca); } } } cout << ans << endl; }