# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
148982 | 갓띵건 (#200) | Crosses on the Grid (FXCUP4_cross) | C++17 | 5 ms | 384 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "cross.h"
#include<bits/stdc++.h>
using namespace std;
#define fast ios::sync_with_stdio(false);cin.tie(0)
#define fi first
#define se second
#define eb emplace_back
#define pb push_back
#define all(v) (v).begin(), (v).end()
#define pre(a) cout<<fixed;cout.precision(a)
typedef long long ll;
typedef pair<int,int> pii;
typedef pair<ll, ll> pll;
const int inf = 1e9;
const ll INF = 1e18;
priority_queue<int> pQ;
vector<pii> v;
long long SelectCross(int K, std::vector<int> I, std::vector<int> O) {
int n = I.size();
for(int i=0; i<n; i++) {
v.eb(I[i], O[i]);
}
sort(all(v));
ll ans = 0;
for(int i=n-1; i >= 0; i--) {
if(pQ.size() == K-1) {
ll out = min(v[i].se, -pQ.top());
ll in = v[i].fi;
ans = max(ans, 2 * out * in - in * in);
}
if(pQ.size() < K-1) pQ.push(-v[i].se);
else if(pQ.size() && -pQ.top() < v[i].se) pQ.pop(), pQ.push(-v[i].se);
}
return ans;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |