# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
185629 | dndhk | Jakarta Skyscrapers (APIO15_skyscraper) | C++14 | 4 ms | 632 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define pb push_back
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
const int MAX_N = 2000;
const int INF = 10000000;
int dp[MAX_N+1][MAX_N+1];
int N, M;
vector<int> gp[MAX_N+1];
int s, e, d;
bool chk[MAX_N+1];
deque<pii> dq;
bool check(int x, int y){
if(x==e){
printf("%d", y);
return true;
}
chk[x] = true;
for(int i : gp[x]){
if(dp[x][i]>y){
dp[x][i] = y;
dq.pb({x, i});
}
}
return false;
}
int main(){
scanf("%d%d", &N, &M);
for(int i=0; i<M; i++){
int a, b; scanf("%d%d", &a, &b);
a++;
gp[a].pb(b);
if(i==0){
s = a;
d = b;
}else if(i==1){
e = a;
}
}
for(int i=1; i<=N; i++){
for(int j=1; j<=N; j++){
dp[i][j] = INF;
}
}
dq.pb({s, d});
if(check(s, 0)){
return 0;
}
dp[s][d] = 0;
while(1){
pii now = dq.front(); dq.pop_front();
if(now.first+now.second<=N){
if(dp[now.first+now.second][now.second]>dp[now.first][now.second]+1){
dp[now.first+now.second][now.second] = dp[now.first][now.second] + 1;
dq.pb({now.first+now.second, now.second});
if(!chk[now.first+now.second]){
if(check(now.first+now.second, dp[now.first][now.second]+1)){
return 0;
}
}
}
}
if(now.first-now.second>=1){
if(dp[now.first-now.second][now.second]>dp[now.first][now.second]+1){
dp[now.first-now.second][now.second] = dp[now.first][now.second] + 1;
dq.pb({now.first-now.second, now.second});
if(!chk[now.first-now.second]){
if(check(now.first-now.second, dp[now.first-now.second][now.second])){
return 0;
}
}
}
}
}
printf("-1");
return 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... |