結果
問題 | No.2495 Three Sets |
ユーザー | GOTKAKO |
提出日時 | 2023-10-06 22:20:26 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,321 bytes |
コンパイル時間 | 1,983 ms |
コンパイル使用メモリ | 178,260 KB |
実行使用メモリ | 818,048 KB |
最終ジャッジ日時 | 2024-07-26 16:33:39 |
合計ジャッジ時間 | 4,480 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 4 ms
5,376 KB |
testcase_10 | AC | 13 ms
7,936 KB |
testcase_11 | AC | 13 ms
6,784 KB |
testcase_12 | AC | 23 ms
8,448 KB |
testcase_13 | MLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ ios_base::sync_with_stdio(false); cin.tie(nullptr); int Na,Nb,Nc; cin >> Na >> Nb >> Nc; vector<long long> A(Na),B(Nb),C(Nc); for(auto &a : A) cin >> a; for(auto &b : B) cin >> b; for(auto &c : C) cin >> c; sort(A.rbegin(),A.rend()); sort(B.rbegin(),B.rend()); sort(C.rbegin(),C.rend()); for(int i=1; i<Na; i++) A.at(i) += A.at(i-1); for(int i=1; i<Nb; i++) B.at(i) += B.at(i-1); for(int i=1; i<Nc; i++) C.at(i) += C.at(i-1); vector<vector<long long>> ci(Na+1,vector<long long>(Nc+1)),diff(Na+1,vector<long long>(Nc)); for(int i=0; i<=Na; i++){ for(int k=1; k<=Nc; k++){ ci.at(i).at(k) = i*C.at(k-1); } } for(int i=0; i<=Na; i++){ for(int k=0; k<Nc; k++){ diff.at(i).at(k) = ci.at(i).at(k)-ci.at(i).at(k+1); } } long long answer = 0; for(int i=0; i<=Na; i++){ for(int k=0; k<=Nb; k++){ long long a = 0,b = 0,c = 0; if(i) a = A.at(i-1); if(k) b = B.at(k-1); int l = lower_bound(diff.at(i).begin(),diff.at(i).end(),b)-diff.at(i).begin(); if(l) c = C.at(l-1); answer = max(answer,a*k+b*l+c*i); } } cout << answer << endl; }