# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
764250 | 2023-06-23T09:36:51 Z | idkhandle | Crosses on the Grid (FXCUP4_cross) | C++17 | 1 ms | 340 KB |
#include "cross.h" #include <bits/stdc++.h> using namespace std; using pii = pair<int, int>; using ll = long long; ll SelectCross(int K, vector<int> I, vector<int> O) { int n = I.size(); vector<pii> a; for (int i = 0; i < n; i++) { a.emplace_back(I[i], O[i]); } sort(a.begin(), a.end()); multiset<int> st; ll ans = 0; for (int i = n - 1; i >= 0; i--) { if (st.size() >= K - 1) { auto it = st.rbegin(); for (int j = 0; j < K - 2; j++) { it = next(it); } ans = max(ans, a[i].first * (ll)(2 * min(*it, a[i].second) - a[i].first)); } st.insert(a[i].second); } return ans; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 1 ms | 340 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 1 ms | 340 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 1 ms | 340 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |