# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
411700 | MasterTaster | Jakarta Skyscrapers (APIO15_skyscraper) | C++14 | 2 ms | 1612 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define pb push_back
#define ll long long
#define pii pair<int, int>
#define xx first
#define yy second
#define INF 1000000000000010LL
#define MAXN 30010
using namespace std;
ll d[MAXN];
int n, m;
vector<int> g[MAXN];
vector<ll> w[MAXN];
void dijkstra(int s)
{
for (int i=0; i<n; i++) d[i]=INF;
d[s]=0;
set< pair<int, ll> > q;
q.insert({0, s});
while (!q.empty())
{
int u=q.begin()->second;
q.erase(q.begin());
for (int i=0; i<g[u].size(); i++)
{
int v=g[u][i];
if (d[u]+w[u][i]<d[v])
{
q.erase({d[v], v});
d[v]=d[u]+w[u][i];
q.insert({d[v], v});
}
}
}
}
int main(){
ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0);
cin>>n>>m;
for (int i=0; i<m; i++)
{
int u; cin>>u;
int p; cin>>p;
for (int j=1; u-j*p>=0; j++) { g[u].pb(u-j*p); w[u].pb(j); }
for (int j=1; u+j*p<n; j++) { g[u].pb(u+j*p); w[u].pb(j); }
}
dijkstra(0);
if (d[1]==INF) cout<<-1;
else cout<<d[1];
}
컴파일 시 표준 에러 (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... |