Submission #63559767
Source Code Expand
Copy
#include<iostream>//#include<string>#include<vector>#include<algorithm>int main(){int n, m;std::cin >> n >> m;std::vector<int> black(n);for (int i = 0; i < n; i++) {std::cin >> black[i];}std::vector<int> white(m);for (int i = 0; i < m; i++) {std::cin >> white[i];}std::sort(black.begin(), black.end(), std::greater<int>{});std::sort(white.begin(), white.end(), std::greater<int>{});
#include<iostream> //#include<string> #include<vector> #include<algorithm> int main() { int n, m; std::cin >> n >> m; std::vector<int> black(n); for (int i = 0; i < n; i++) { std::cin >> black[i]; } std::vector<int> white(m); for (int i = 0; i < m; i++) { std::cin >> white[i]; } std::sort(black.begin(), black.end(), std::greater<int>{}); std::sort(white.begin(), white.end(), std::greater<int>{}); int max_val = 0; int i; for (i = 0; i < std::min(n, m); i++) { if ((black[i] + white[i] >= 0) && (black[i] + white[i] >= black[i])) { max_val += black[i] + white[i]; } else { break; } } int j; for (j = i; j < n; j++) { if (black[j] >= 0) { max_val += black[j]; } else { break; } } std::cout << max_val << std::endl; return 0; }
Submission Info
Submission Time | |
---|---|
Task | C - Buy Balls |
User | mrmrmrn0230 |
Language | C++ 20 (gcc 12.2) |
Score | 0 |
Code Size | 964 Byte |
Status | WA |
Exec Time | 129 ms |
Memory | 4888 KB |
Judge Result
Set Name | Sample | All | ||||||
---|---|---|---|---|---|---|---|---|
Score / Max Score | 0 / 0 | 0 / 300 | ||||||
Status |
|
|
Set Name | Test Cases |
---|---|
Sample | 00_sample_00.txt, 00_sample_01.txt, 00_sample_02.txt |
All | 00_sample_00.txt, 00_sample_01.txt, 00_sample_02.txt, 01_test_00.txt, 01_test_01.txt, 01_test_02.txt, 01_test_03.txt, 01_test_04.txt, 01_test_05.txt, 01_test_06.txt, 01_test_07.txt, 01_test_08.txt, 01_test_09.txt, 01_test_10.txt, 01_test_11.txt, 01_test_12.txt, 01_test_13.txt, 01_test_14.txt, 01_test_15.txt, 01_test_16.txt, 01_test_17.txt, 01_test_18.txt, 01_test_19.txt, 01_test_20.txt, 01_test_21.txt, 01_test_22.txt, 01_test_23.txt, 01_test_24.txt, 01_test_25.txt, 01_test_26.txt, 01_test_27.txt, 01_test_28.txt, 01_test_29.txt, 01_test_30.txt, 01_test_31.txt, 01_test_32.txt, 01_test_33.txt, 01_test_34.txt, 01_test_35.txt, 01_test_36.txt, 01_test_37.txt, 01_test_38.txt, 01_test_39.txt, 01_test_40.txt, 01_test_41.txt, 01_test_42.txt, 01_test_43.txt, 01_test_44.txt, 01_test_45.txt |
Case Name | Status | Exec Time | Memory |
---|---|---|---|
00_sample_00.txt | AC | 1 ms | 3604 KB |
00_sample_01.txt | AC | 1 ms | 3488 KB |
00_sample_02.txt | AC | 1 ms | 3488 KB |
01_test_00.txt | WA | 1 ms | 3472 KB |
01_test_01.txt | WA | 1 ms | 3476 KB |
01_test_02.txt | WA | 1 ms | 3528 KB |
01_test_03.txt | WA | 66 ms | 3964 KB |
01_test_04.txt | WA | 44 ms | 3736 KB |
01_test_05.txt | WA | 41 ms | 3616 KB |
01_test_06.txt | WA | 128 ms | 4724 KB |
01_test_07.txt | WA | 129 ms | 4744 KB |
01_test_08.txt | WA | 127 ms | 4888 KB |
01_test_09.txt | WA | 128 ms | 4816 KB |
01_test_10.txt | WA | 128 ms | 4744 KB |
01_test_11.txt | WA | 129 ms | 4748 KB |
01_test_12.txt | WA | 128 ms | 4760 KB |
01_test_13.txt | WA | 128 ms | 4648 KB |
01_test_14.txt | WA | 128 ms | 4724 KB |
01_test_15.txt | WA | 113 ms | 4480 KB |
01_test_16.txt | WA | 128 ms | 4760 KB |
01_test_17.txt | WA | 108 ms | 4416 KB |
01_test_18.txt | WA | 127 ms | 4740 KB |
01_test_19.txt | WA | 116 ms | 4440 KB |
01_test_20.txt | WA | 127 ms | 4796 KB |
01_test_21.txt | WA | 113 ms | 4416 KB |
01_test_22.txt | WA | 126 ms | 4648 KB |
01_test_23.txt | WA | 103 ms | 4500 KB |
01_test_24.txt | WA | 128 ms | 4792 KB |
01_test_25.txt | WA | 101 ms | 4528 KB |
01_test_26.txt | WA | 128 ms | 4788 KB |
01_test_27.txt | WA | 110 ms | 4396 KB |
01_test_28.txt | WA | 124 ms | 4720 KB |
01_test_29.txt | WA | 107 ms | 4384 KB |
01_test_30.txt | WA | 128 ms | 4728 KB |
01_test_31.txt | WA | 91 ms | 4192 KB |
01_test_32.txt | WA | 125 ms | 4652 KB |
01_test_33.txt | WA | 97 ms | 4552 KB |
01_test_34.txt | WA | 121 ms | 4888 KB |
01_test_35.txt | WA | 104 ms | 4492 KB |
01_test_36.txt | WA | 125 ms | 4652 KB |
01_test_37.txt | WA | 84 ms | 4224 KB |
01_test_38.txt | WA | 129 ms | 4720 KB |
01_test_39.txt | WA | 94 ms | 4264 KB |
01_test_40.txt | WA | 125 ms | 4820 KB |
01_test_41.txt | AC | 93 ms | 4128 KB |
01_test_42.txt | AC | 129 ms | 4740 KB |
01_test_43.txt | AC | 1 ms | 3604 KB |
01_test_44.txt | AC | 65 ms | 4028 KB |
01_test_45.txt | WA | 65 ms | 3996 KB |