# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
17412 | 2015-11-30T01:53:58 Z | comet | Palembang Bridges (APIO15_bridge) | C++ | 0 ms | 4304 KB |
#include <cstdio> #include <algorithm> #include <queue> using namespace std; typedef long long ll; #define pb push_back struct pt{ ll x,y; bool operator<(const pt& r)const{ return x+y<r.x+r.y; } }; int K,N,sz; ll base,ans,sum; ll L[100010],R[100010]; pt a[100010]; priority_queue<ll> lo; priority_queue<ll,vector<ll>,greater<ll> > hi; void push(int x){ if(!hi.empty()&&x>=hi.top())hi.push(x); else lo.push(x); ll t; while(hi.size()+1<lo.size()){ t=lo.top();lo.pop(); hi.push(t); } while(hi.size()>lo.size()+1){ t=hi.top();hi.pop(); lo.push(t); } } void f(ll s[]){ vector<int> ret; for(int i=0;i<sz;i++){ ret.pb(a[i].x); ret.pb(a[i].y); sort(ret.begin(),ret.end()); int mid=(ret[ret.size()/2]); for(int j=0;j<=i;j++){ s[i]+=abs(a[j].x-mid); s[i]+=abs(a[j].y-mid); } } } int main(){ //freopen("bridge.in","r",stdin); scanf("%d%d ",&K,&N); char tx,ty; ll x,y; for(int i=0;i<N;i++){ scanf("%c %lld %c %lld ",&tx,&x,&ty,&y); if(tx==ty){ base+=y-x-1; }else{ a[sz++]=pt{x,y}; } } base+=N; sort(a,a+sz); f(L); if(K==1){ printf("%lld",L[sz-1]+base); return 0; } reverse(a,a+sz); f(R); ans=-1e18; for(int i=0;i<sz;i++){ ans=max(ans,L[i]+R[sz-1-i]); } printf("%lld",ans+base); }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 4304 KB | Output is correct |
2 | Incorrect | 0 ms | 4304 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 4304 KB | Output is correct |
2 | Incorrect | 0 ms | 4304 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 4304 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 4304 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 4304 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |