#include <bits/stdc++.h>
#define F first
#define S second
#define P push
#define pb push_back
#define MEM(dp,i) memset(dp,i,sizeof(dp))
#define W while
#define R return
#define C continue
#define SI size()
#define ll long long
#define ld long double
#define pll pair<ll,ll>
#define pii pair<int,int>
#define SF(x) scanf("%Id",&x)
#define SF2(x,y) scanf("%Id%Id",&x,&y)
#define SF3(x,y,z) scanf("%I64d%I64d%I64d",&x,&y,&z)
#define SF4(x,y,z,o) scanf("%I64d%I64d%I64d%I64d",&x,&y,&z,&o)
#define all(v) v.begin(),v.end()
using namespace std;
const long long INF = 1e9;
const long long MOD = 1e9+7;
const int MX=30015;
int n,m;
int xx[MX],y[MX];
const int sq=2002;
ll dp[2205][2224];
vector<int> v[MX];
ll DP(int x,int j){
if(x<0||x>=n)R INF;
// cout<<x<<" "<<j<<endl;
if(x==xx[1])R 0;
ll &ret=dp[x][j];
if(ret!=-1)R ret;
ret=INF;
for(auto i : v[x])
{ret=min(ret,DP(x,i));}
ret=min(ret,DP(x+j,j)+1);
ret=min(ret,DP(x-j,j)+1);
R ret;
}
int main(){
MEM(dp,-1);
cin>>n>>m;
for(int i=0;i<m;i++){
cin>>xx[i]>>y[i];
v[xx[i]].pb(y[i]);
}
W(1);
if(DP(xx[0],0)==INF)cout<<-1;
else
cout<<DP(xx[0],0);
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1062 ms |
39416 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1062 ms |
39520 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1053 ms |
39520 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1065 ms |
39520 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1070 ms |
39520 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |