結果
問題 | No.20 砂漠のオアシス |
ユーザー | ser |
提出日時 | 2018-01-04 09:59:01 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 200 ms / 5,000 ms |
コード長 | 2,017 bytes |
コンパイル時間 | 934 ms |
コンパイル使用メモリ | 96,380 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-02 08:04:17 |
合計ジャッジ時間 | 2,393 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | AC | 97 ms
5,376 KB |
testcase_06 | AC | 57 ms
5,376 KB |
testcase_07 | AC | 112 ms
5,376 KB |
testcase_08 | AC | 22 ms
5,376 KB |
testcase_09 | AC | 200 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 6 ms
5,376 KB |
testcase_13 | AC | 6 ms
5,376 KB |
testcase_14 | AC | 19 ms
5,376 KB |
testcase_15 | AC | 8 ms
5,376 KB |
testcase_16 | AC | 11 ms
5,376 KB |
testcase_17 | AC | 13 ms
5,376 KB |
testcase_18 | AC | 23 ms
5,376 KB |
testcase_19 | AC | 55 ms
5,376 KB |
testcase_20 | AC | 4 ms
5,376 KB |
ソースコード
#include <iostream> #include <algorithm> #include <string> #include <queue> #include <vector> #include <climits> #include <tuple> using namespace std; int DIR_X[] = {-1, 1, 0, 0}; int DIR_Y[] = { 0, 0, 1, -1}; typedef vector<int> vi; typedef vector<vector<int>> vvi; void dijkstra(vvi& field, vvi& cost, int sx, int sy) { cost.assign(field.size(), vi(field[0].size(), INT_MAX)); auto queue = priority_queue<tuple<int,int,int>, vector<tuple<int, int, int>>, greater<tuple<int,int,int>>>(); queue.emplace(sx, sy, 0); cost[sx][sy] = 0; while(!queue.empty()) { int ix, iy, ic; tie(ix, iy, ic) = queue.top(); queue.pop(); if(ic <= cost[ix][iy]) { for(int i=0; i<4; i++) { int nx = ix + DIR_X[i]; if(nx<0 || field.size()<=nx) continue; int ny = iy + DIR_Y[i]; if(ny<0 || field[0].size()<=ny) continue; int c = ic + field[nx][ny]; if(c<cost[nx][ny]) { cost[nx][ny] = c; queue.emplace(nx,ny,c); } } } } } int main() { int len, life, ox, oy; scanf("%d%d%d%d", &len, &life, &ox, &oy); ox--; oy--; vvi field = vvi(len, vi(len)); for(int y=0; y<len; y++) { for(int x=0; x<len; x++) { scanf("%d", &field[x][y]); } } vvi cost; dijkstra(field, cost, 0, 0); if(cost[len-1][len-1] < life) { printf("YES"); return 0; } if(ox>0 || oy>0) { int oasis_life = life - cost[ox][oy]; if(oasis_life <= 0) { printf("NO"); return 0; } dijkstra(field, cost, ox, oy); if(oasis_life*2 - cost[len-1][len-1] > 0) { printf("YES"); return 0; } } printf("NO"); return 0; }