# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
278747 | arnold518 | Circus (Balkan15_CIRCUS) | C++14 | 4075 ms | 18872 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "circus.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
const int MAXN = 3e5;
const int INF = 1e9+100;
int N, M, P[MAXN+10];
int dist[MAXN+10];
struct Queue
{
int u, w;
bool operator < (const Queue &p) const { return w>p.w; }
};
void init(int _N, int _M, int _P[])
{
N=_N; M=_M;
for(int i=1; i<=N; i++) P[i]=_P[i-1];
sort(P+1, P+N+1);
N=unique(P+1, P+N+1)-P-1;
P[0]=M;
for(int i=0; i<=3*N; i++) dist[i]=INF;
priority_queue<Queue> PQ;
PQ.push({2*N, M-P[N]}); dist[0]=0;
while(!PQ.empty())
{
Queue now=PQ.top(); PQ.pop();
if(dist[now.u]<=now.w) continue;
dist[now.u]=now.w;
if(now.u<=N)
{
int t=upper_bound(P+1, P+N+1, P[now.u]-now.w)-P-1;
if(t!=0) PQ.push({N+t, P[now.u]-P[t]});
t=lower_bound(P+1, P+N+1, P[now.u]+now.w)-P;
if(t!=N+1) PQ.push({N*2+t, P[t]-P[now.u]});
}
else if(now.u<=2*N)
{
PQ.push({now.u-N, now.w});
if(now.u!=N+1) PQ.push({now.u-1, now.w+P[now.u-N]-P[now.u-N-1]});
}
else
{
PQ.push({now.u-2*N, now.w});
if(now.u!=3*N) PQ.push({now.u+1, now.w+P[now.u+1-2*N]-P[now.u-2*N]});
}
}
//for(int i=1; i<=N; i++) printf("%d ", dist[i]); printf("\n");
}
int minLength(int D)
{
int ans=M-D;
for(int i=1; i<=N; i++) if(dist[i]<=abs(P[i]-D)) ans=min(ans, abs(P[i]-D));
return ans;
}
컴파일 시 표준 에러 (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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |