結果
問題 | No.34 砂漠の行商人 |
ユーザー | latte0119 |
提出日時 | 2016-02-26 01:13:42 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,449 bytes |
コンパイル時間 | 1,274 ms |
コンパイル使用メモリ | 164,612 KB |
実行使用メモリ | 84,084 KB |
最終ジャッジ日時 | 2024-09-22 13:50:34 |
合計ジャッジ時間 | 9,136 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
81,536 KB |
testcase_01 | AC | 30 ms
81,536 KB |
testcase_02 | AC | 48 ms
81,728 KB |
testcase_03 | AC | 41 ms
81,536 KB |
testcase_04 | AC | 164 ms
82,176 KB |
testcase_05 | AC | 200 ms
82,152 KB |
testcase_06 | AC | 136 ms
81,664 KB |
testcase_07 | AC | 297 ms
82,432 KB |
testcase_08 | AC | 385 ms
82,904 KB |
testcase_09 | AC | 298 ms
83,200 KB |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | AC | 162 ms
82,324 KB |
testcase_13 | RE | - |
testcase_14 | AC | 471 ms
84,084 KB |
testcase_15 | AC | 164 ms
82,276 KB |
testcase_16 | AC | 161 ms
82,332 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 514 ms
83,988 KB |
testcase_20 | AC | 477 ms
84,024 KB |
testcase_21 | AC | 492 ms
84,036 KB |
testcase_22 | AC | 477 ms
83,924 KB |
testcase_23 | WA | - |
testcase_24 | AC | 475 ms
83,896 KB |
testcase_25 | AC | 284 ms
82,956 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; #define int long long typedef long long ll; typedef pair<int,int>pint; typedef vector<int>vint; typedef vector<pint>vpint; #define pb push_back #define mp make_pair #define fi first #define se second #define ln <<endl #define all(v) (v).begin(),(v).end() #define rep(i,n) for(int i=0;i<(n);i++) #define reps(i,f,n) for(int i=(f);i<(n);i++) #define each(it,v) for(__typeof((v).begin()) it=(v).begin();it!=(v).end();it++) template<class T,class U>void chmin(T &t,U f){if(t>f)t=f;} template<class T,class U>void chmax(T &t,U f){if(t<f)t=f;} struct data{ int y,x,h; data(int y,int x,int h):y(y),x(x),h(h){} }; int dxy[]={0,-1,0,1,0}; int N,V,sx,sy,gx,gy; int L[100][100]; int dist[100][100][1000]; signed main(){ cin>>N>>V>>sx>>sy>>gx>>gy;sx--;sy--;gx--;gy--; rep(i,N)rep(j,N)cin>>L[i][j]; queue<data>que; que.push(data(sy,sx,0)); fill_n(**dist,100*100*1000,1<<25); dist[sy][sx][0]=0; while(que.size()){ data d=que.front();que.pop(); rep(i,4){ int ny=d.y+dxy[i],nx=d.x+dxy[i+1],nh=d.h+L[ny][nx]; if(ny<0||ny>=N||nx<0||nx>=N||nh>=1000||dist[ny][nx][nh]<=dist[d.y][d.x][d.h]+1)continue; dist[ny][nx][nh]=dist[d.y][d.x][d.h]+1; que.push(data(ny,nx,nh)); } } int mi=1<<25; rep(i,V)chmin(mi,dist[gy][gx][i]); if(mi==(1<<25))cout<<-1<<endl; else cout<<mi<<endl; return 0; }