結果
問題 | No.20 砂漠のオアシス |
ユーザー | myanta |
提出日時 | 2017-05-02 23:01:35 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 18 ms / 5,000 ms |
コード長 | 1,475 bytes |
コンパイル時間 | 578 ms |
コンパイル使用メモリ | 50,304 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-13 05:50:30 |
合計ジャッジ時間 | 1,345 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 3 ms
5,248 KB |
testcase_05 | AC | 15 ms
5,248 KB |
testcase_06 | AC | 7 ms
5,248 KB |
testcase_07 | AC | 18 ms
5,248 KB |
testcase_08 | AC | 10 ms
5,248 KB |
testcase_09 | AC | 16 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 1 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 3 ms
5,248 KB |
testcase_14 | AC | 3 ms
5,248 KB |
testcase_15 | AC | 3 ms
5,248 KB |
testcase_16 | AC | 4 ms
5,248 KB |
testcase_17 | AC | 3 ms
5,248 KB |
testcase_18 | AC | 4 ms
5,248 KB |
testcase_19 | AC | 4 ms
5,248 KB |
testcase_20 | AC | 2 ms
5,248 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:109:52: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 109 | for(int x=1;x<=n;x++) scanf("%d", &desert[y][x]); | ~~~~~^~~~~~~~~~~~~~~~~~~~~
ソースコード
#include<cstdio> #include<vector> #include<queue> using namespace std; struct state_t { int x, y, v; bool operator < (const state_t& rhs) const { return v<rhs.v; } }; vector<vector<int> > desert, memo; priority_queue<state_t> que; void push(int x, int y, int v) { que.push((state_t){x, y, v}); } int pop(int& x, int& y, int& v) { if(que.empty()) return 0; state_t s=que.top(); x=s.x; y=s.y; v=s.v; que.pop(); return 1; } int max_u(int& m, int v) { if(m<v) { m=v; return 1; } return 0; } int solve(int n, int v, int ox, int oy) { int vx[]={ 1, 0,-1, 0}; int vy[]={ 0,-1, 0, 1}; int x=1, y=1; push(x, y, v); for(;pop(x, y, v);) { if(x==ox && y==oy) { v*=2; ox=oy=0; } if(!max_u(memo[y][x], v)) continue; //printf("x=%d y=%d v=%d\n", x, y, v); for(int i=0;i<4;i++) { int nx, ny, nv; nx=x+vx[i]; ny=y+vy[i]; nv=v-desert[ny][nx]; if(nv>0) push(nx, ny, nv); } } /* for(int y=1;y<=n;y++) { for(int x=1;x<=n;x++) printf("%2d ", memo[y][x]); printf("\n"); } */ return memo[n][n]>=0; } int main(void) { int n, v, ox, oy; while(scanf("%d%d%d%d", &n, &v, &ox, &oy)==4) { desert.clear(); memo.clear(); desert.resize(n+2); memo.resize(n+2); for(int y=0;y<=n+1;y++) { desert[y].resize(n+2, v*2+1); memo[y].resize(n+2, -1); } for(int y=1;y<=n;y++) { for(int x=1;x<=n;x++) scanf("%d", &desert[y][x]); } printf("%s\n", solve(n, v, ox, oy)?"YES":"NO"); } return 0; }