結果
問題 | No.2495 Three Sets |
ユーザー | GOTKAKO |
提出日時 | 2023-10-11 00:35:10 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,691 bytes |
コンパイル時間 | 2,225 ms |
コンパイル使用メモリ | 205,176 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-16 22:17:16 |
合計ジャッジ時間 | 6,109 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 3 ms
5,376 KB |
testcase_10 | AC | 4 ms
5,376 KB |
testcase_11 | AC | 14 ms
5,376 KB |
testcase_12 | AC | 22 ms
5,376 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 469 ms
5,376 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 26 ms
5,376 KB |
testcase_20 | AC | 23 ms
5,376 KB |
ソースコード
#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> suma(6009),sumb(6009),sumc(6009),Va(6009),Vb(6009),Vc(6009); for(int i=0; i<Na; i++){ int a; cin >> a; suma.at(a+3000) += a; Va.at(a+3000)++; } for(int i=0; i<Nb; i++){ int b; cin >> b; sumb.at(b+3000) += b; Vb.at(b+3000)++; } for(int i=0; i<Nc; i++){ int c; cin >> c; sumc.at(c+3000) += c; Vc.at(c+3000)++; } for(int i=6007; i>=0; i--) Va.at(i) += Va.at(i+1); for(int i=6007; i>=0; i--) Vb.at(i) += Vb.at(i+1); for(int i=6007; i>=0; i--) Vc.at(i) += Vc.at(i+1); for(int i=6007; i>=0; i--) suma.at(i) += suma.at(i+1); for(int i=6007; i>=0; i--) sumb.at(i) += sumb.at(i+1); for(int i=6007; i>=0; i--) sumc.at(i) += sumc.at(i+1); long long answer = 0; for(int i=0; i<=6000; i++){ long long sa = suma.at(i), va = Va.at(i); if(i) if(va == Va.at(i-1)) continue; for(int k=0; k<=6000; k++){ long long sb = sumb.at(k),vb = Vb.at(k); if(k) if(vb == Vb.at(k-1)) continue; long long now = sa*vb; if(va == 0){ answer = max({answer,now,now+sb*Nc}); continue; } long long border = (-sb+va-1)/va; if(border > 3000) border = 3001; if(border < -3000) border = -3000; long long sc = sumc.at(border+3000),vc = Vc.at(border+3000); answer = max(answer,now+sc*va+sb*vc); } } cout << answer << endl; }