結果
問題 | No.34 砂漠の行商人 |
ユーザー | kotatsugame |
提出日時 | 2020-02-27 22:46:14 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 794 bytes |
コンパイル時間 | 547 ms |
コンパイル使用メモリ | 69,144 KB |
実行使用メモリ | 13,640 KB |
最終ジャッジ日時 | 2024-10-13 16:03:08 |
合計ジャッジ時間 | 7,188 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,148 KB |
testcase_01 | AC | 1 ms
6,820 KB |
testcase_02 | AC | 1 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 3 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
コンパイルメッセージ
main.cpp:8:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 8 | main() | ^~~~
ソースコード
#include<iostream> #include<algorithm> using namespace std; int N,V,Sx,Sy,Gx,Gy; int L[100][100]; int dp[2][100][100]; int d[4]={1,0,-1}; main() { cin>>N>>V>>Sy>>Sx>>Gy>>Gx; Sx--,Sy--,Gx--,Gy--; for(int i=0;i<N;i++)for(int j=0;j<N;j++)cin>>L[i][j]; int now=0; dp[now][Sx][Sy]=V; for(int dis=0;;dis++) { if(dp[now][Gx][Gy]>0) { cout<<dis<<endl; return 0; } for(int i=0;i<N;i++)for(int j=0;j<N;j++)dp[1-now][i][j]=0; bool ok=false; for(int i=0;i<N;i++)for(int j=0;j<N;j++) { if(dp[now][i][j]==0)continue; for(int r=0;r<4;r++) { int x=i+d[r],y=j+d[r^1]; if(0<=x&&0<=y&&x<N&&y<N&&L[x][y]<dp[now][i][j]) { ok=true; dp[1-now][x][y]=max(dp[1-now][x][y],dp[now][i][j]-L[x][y]); } } } if(!ok)break; now=1-now; } cout<<-1<<endl; }