# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
151720 | 2019-09-04T11:10:49 Z | leduykhongngu | Crosses on the Grid (FXCUP4_cross) | C++17 | 2 ms | 376 KB |
#include <vector> #include <set> #include <algorithm> #include <assert.h> long long SelectCross(int K, std::vector<int> I, std::vector<int> O) { //i<o int n = I.size(); std::vector< std::pair<int, int > > rectangles; for (int i = 0; i < n; ++i) { rectangles.push_back({O[i], I[i]}); } sort(rectangles.begin(), rectangles.end()); //reverse(rectangles.begin(), rectangles.end()); std::multiset< int > myset; for (auto rec : rectangles) { myset.insert(rec.second); } int cnt = 0; long long res = 0; int last = 0; for (auto rec : rectangles) { //delete rec myset.erase(myset.find(rec.second)); if (myset.size() < K) break; int Long = rec.first, Short = *myset.begin(); assert(Long >= Short); res = std::max(res, 1ll * Long * Long - 1ll * (Long - Short) * (Long - Short)); } return res; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 376 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 376 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 376 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |