이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <vector>
#include <map>
#include <set>
#include <stack>
#include <algorithm>
#include <sstream>
#include <iostream>
#include <cstdio>
#include <cmath>
#include <string>
#include <cctype>
#include <cstring>
#include <queue>
#include <cassert>
using namespace std;
typedef long long LL;
typedef vector<string> VS;
typedef vector<int> VI;
typedef pair<int,int> PII;
typedef vector<PII> VPII;
#define MP make_pair
#define ST first
#define ND second
#define PB push_back
#define FOR(i,a,b) for( int i=(a); i<(b); ++i)
#define FORD(i,a,b) for( int i=(a); i>(b); --i)
#define REP(i,n) for(int i=0; i<(n); ++i)
#define ALL(X) (X).begin(),(X).end()
#define SZ(X) (int)(X).size()
#define FORE(it,X) for(__typeof((X).begin()) it=(X).begin(); it!=(X).end();++it)
int dy[100005];
VI dt[100005];
int n,m;
int main()
{
cin>>n>>m;
REP(i, m) {
int a,b;
scanf("%d%d",&a,&b);
a--,b--;
dt[a].PB(b);
}
dy[0]=1;
REP(i, n) if (dy[i]) {
REP(j, SZ(dt[i])) {
int v= dt[i][j];
if (dy[v]) dy[v] = min(dy[v], dy[i]+1);
else dy[v] = dy[i]+1;
}
}
if (dy[n-1] == 0) cout<<-1<<endl;
else cout<<dy[n-1]-1<<endl;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |