結果
問題 | No.20 砂漠のオアシス |
ユーザー | A63635985 |
提出日時 | 2018-03-02 10:51:20 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,068 bytes |
コンパイル時間 | 586 ms |
コンパイル使用メモリ | 55,172 KB |
実行使用メモリ | 127,644 KB |
最終ジャッジ日時 | 2024-06-09 21:39:17 |
合計ジャッジ時間 | 7,763 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 3 ms
6,940 KB |
testcase_04 | AC | 680 ms
69,632 KB |
testcase_05 | AC | 7 ms
6,944 KB |
testcase_06 | TLE | - |
testcase_07 | -- | - |
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 | -- | - |
ソースコード
#include <iostream> using namespace std; int N,V,field[201][201]; int dp[201][201]; int direction[5]={-1,0,1,0,-1}; struct Struct{ int y,x; }; Struct oasis; bool recursion(int h,int w,int hp){ if(h<0 || h>=N )return false; if(w<0 || w>=N )return false; hp-=field[h][w]; if(h==oasis.y && w==oasis.x && oasis.x+oasis.y!=0 ) hp*=2; if(hp<0)return false; if(h==N-1 && w==N-1 )return true; if(dp[h][w]>=hp)return false; dp[h][w]=hp; bool response=false; for(int i=0 ; i<4 ; i++ ) response|=recursion(h+direction[i],w+direction[i+1],hp); return response; } int main(){ cin >> N >> V; cin >> oasis.x >> oasis.y; for(int i=0 ; i<N ; i++ ){ for(int j=0 ; j<N ; j++ ){ cin >> field[i][j]; dp[i][j]=-1; } } if(recursion(0,0,V)) cout <<"YES"<<endl; else cout<<"NO"<<endl; return 0; }