# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
99917 | MohamedAhmed0 | Jakarta Skyscrapers (APIO15_skyscraper) | C++14 | 3 ms | 384 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int main()
{
int n , m ;
scanf("%d %d" , &n , &m) ;
vector< set<int> >v(n+1) ;
vector< vector< pair<int , int> > >adj(n+1) ;
for(int i = 0 ; i < m ; ++i)
{
int a , b ;
scanf("%d %d" , &a , &b) ;
v[a].insert(b) ;
}
for(int i = 0 ; i < n ; ++i)
{
for(auto &power : v[i])
{
for(int j = 1 ; ; ++j)
{
int here = i+power*j ;
if(here >= n)
break;
adj[i].push_back({here , j}) ;
if(v[here].count(power))
break;
}
for(int j = 1; ; ++j)
{
int here = i-power * j ;
if(here < 0)
break;
adj[i].push_back({here , j}) ;
if(v[here].count(power))
break;
}
}
}
priority_queue< pair<int , int> , vector< pair<int , int> > , greater< pair<int , int> > >q ;
q.push({0 , 0}) ;
int dist[n+2] ;
for(int i = 0 ; i <= n ; ++i)
dist[i] = 1e9 ;
dist[0] = 0 ;
while(!q.empty())
{
pair<int , int> p = q.top();
q.pop();
int now = p.second , d = p.first ;
if(now == 1)
return cout<<d<<"\n" , 0 ;
if(d > dist[now])
continue;
for(auto &i : adj[now])
{
int to = i.first ;
int dist2 = d + i.second ;
if(dist2 < dist[to])
{
dist[to] = dist2 ;
q.push({dist2 , to}) ;
}
}
}
return cout<<-1<<"\n" , 0 ;
}
컴파일 시 표준 에러 (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... |