# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
380820 | LittlePants | Palembang Bridges (APIO15_bridge) | C++17 | 134 ms | 10320 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>
#define pb push_back
#define sz(x) (int)(x.size())
#define all(x) x.begin(), x.end()
#define int long long
#define pii pair<int, int>
#define inf 1e9
#define mod 1000000007
#define F first
#define S second
#define mkp(x, y) make_pair(x, y)
#define wopen(x) freopen((x),"w",stdout)
#define ropen(x) freopen((x),"r",stdin)
#define de(x) cout << #x << " = " << x << ' '
#define IO ios_base::sync_with_stdio(0); cin.tie(0);
using namespace std;
const int mxN = 1e6 + 5;
int k, n, dis, su, sd, s[mxN], t[mxN], pre[mxN], suf[mxN];
char p[mxN], q[mxN];
priority_queue<int, vector<int>, greater<int>> up;
priority_queue<int> dn;
void keep() {
while(sz(dn) == sz(up) and dn.top() > up.top()) {
int t = up.top(); up.pop();
int tt = dn.top(); dn.pop();
su = su - t + tt;
sd = sd - tt + t;
up.push(tt); dn.push(t);
# | 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... |