# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
338543 | shahriarkhan | Palembang Bridges (APIO15_bridge) | C++14 | 106 ms | 5728 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 <bits/stdc++.h>
using namespace std ;
bool cmp(pair<int,int> a , pair<int,int> b)
{
return a.first + a.second < b.first + b.second ;
}
priority_queue<int> l ;
priority_queue<int , vector<int> , greater<int> > r ;
long long lsum , rsum ;
void append(int x)
{
int median = (l.size() ? l.top() : 1000000001) ;
if(x <= median)
{
l.push(x) ;
lsum += x ;
}
else
{
r.push(x) ;
rsum += x ;
}
if(r.size() + 1 < l.size())
{
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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |