結果

問題 No.20 砂漠のオアシス
ユーザー A63635985A63635985
提出日時 2018-03-02 10:51:20
言語 C++11
(gcc 13.3.0)
結果
MLE  
実行時間 -
コード長 1,068 bytes
コンパイル時間 703 ms
コンパイル使用メモリ 55,984 KB
実行使用メモリ 814,592 KB
最終ジャッジ日時 2024-12-31 00:59:03
合計ジャッジ時間 48,434 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
104,996 KB
testcase_01 AC 2 ms
13,772 KB
testcase_02 AC 2 ms
13,636 KB
testcase_03 AC 4 ms
97,824 KB
testcase_04 AC 788 ms
76,452 KB
testcase_05 MLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 100 ms
6,816 KB
testcase_09 TLE -
testcase_10 AC 1 ms
6,820 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 2,715 ms
46,720 KB
testcase_15 AC 1,864 ms
148,736 KB
testcase_16 MLE -
testcase_17 TLE -
testcase_18 MLE -
testcase_19 TLE -
testcase_20 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0