結果
問題 | No.34 砂漠の行商人 |
ユーザー | fiord |
提出日時 | 2015-07-22 09:36:53 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 856 ms / 5,000 ms |
コード長 | 1,113 bytes |
コンパイル時間 | 1,363 ms |
コンパイル使用メモリ | 165,600 KB |
実行使用メモリ | 75,136 KB |
最終ジャッジ日時 | 2024-06-28 10:18:43 |
合計ジャッジ時間 | 6,493 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 48 ms
73,472 KB |
testcase_01 | AC | 49 ms
73,600 KB |
testcase_02 | AC | 49 ms
73,564 KB |
testcase_03 | AC | 50 ms
73,728 KB |
testcase_04 | AC | 57 ms
73,728 KB |
testcase_05 | AC | 63 ms
73,728 KB |
testcase_06 | AC | 51 ms
73,600 KB |
testcase_07 | AC | 64 ms
73,728 KB |
testcase_08 | AC | 67 ms
73,844 KB |
testcase_09 | AC | 253 ms
74,496 KB |
testcase_10 | AC | 65 ms
73,856 KB |
testcase_11 | AC | 493 ms
74,752 KB |
testcase_12 | AC | 55 ms
73,816 KB |
testcase_13 | AC | 856 ms
75,136 KB |
testcase_14 | AC | 645 ms
75,104 KB |
testcase_15 | AC | 51 ms
73,728 KB |
testcase_16 | AC | 80 ms
73,976 KB |
testcase_17 | AC | 50 ms
73,728 KB |
testcase_18 | AC | 52 ms
73,628 KB |
testcase_19 | AC | 205 ms
74,752 KB |
testcase_20 | AC | 335 ms
75,008 KB |
testcase_21 | AC | 50 ms
73,756 KB |
testcase_22 | AC | 54 ms
73,856 KB |
testcase_23 | AC | 50 ms
73,728 KB |
testcase_24 | AC | 414 ms
75,008 KB |
testcase_25 | AC | 67 ms
73,912 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int dp[100][100][1800]; int mx[]={1,-1,0,0},my[]={0,0,1,-1}; int n; bool check(int x,int y){ if(0>x||n<=x) return false; if(0>y||n<=y) return false; return true; } int main(){ int v,sx,sy,gx,gy; cin>>n>>v>>sx>>sy>>gx>>gy; sx--; sy--; gx--; gy--; int data[n][n]; for(int i=0;i<n;i++){ for(int j=0;j<n;j++) cin>>data[i][j]; } for(int i=0;i<100;i++){ for(int j=0;j<100;j++){ for(int k=0;k<1800;k++) dp[i][j][k]=1<<30; } } dp[sy][sx][0]=0; queue<tuple<int,int,int> > q; q.push(make_tuple(sx,sy,0)); while(!q.empty()){ auto now=q.front(); q.pop(); int nx=get<0>(now),ny=get<1>(now),cost=get<2>(now); if(nx==gx&&ny==gy){ cout<<dp[ny][nx][cost]<<endl; return 0; } for(int i=0;i<4;i++){ if(check(nx+mx[i],ny+my[i])){ if(cost+data[ny+my[i]][nx+mx[i]]>=v) continue; int nex=nx+mx[i],ney=ny+my[i]; if(dp[ney][nex][cost+data[ney][nex]]>dp[ny][nx][cost]+1){ dp[ney][nex][cost+data[ney][nex]]=dp[ny][nx][cost]+1; q.push(make_tuple(nex,ney,cost+data[ney][nex])); } } } } cout<<-1<<endl; return 0; }