結果
問題 | No.20 砂漠のオアシス |
ユーザー | snrnsidy |
提出日時 | 2021-04-23 13:27:35 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,682 bytes |
コンパイル時間 | 1,745 ms |
コンパイル使用メモリ | 137,224 KB |
実行使用メモリ | 45,336 KB |
最終ジャッジ日時 | 2024-07-04 07:01:36 |
合計ジャッジ時間 | 7,427 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 15 ms
42,772 KB |
testcase_01 | AC | 14 ms
42,772 KB |
testcase_02 | AC | 14 ms
42,880 KB |
testcase_03 | AC | 14 ms
43,008 KB |
testcase_04 | AC | 108 ms
44,032 KB |
testcase_05 | AC | 613 ms
45,336 KB |
testcase_06 | WA | - |
testcase_07 | AC | 1,023 ms
44,804 KB |
testcase_08 | AC | 110 ms
43,192 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 12 ms
42,848 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 118 ms
43,556 KB |
testcase_15 | AC | 108 ms
43,912 KB |
testcase_16 | AC | 234 ms
43,768 KB |
testcase_17 | WA | - |
testcase_18 | AC | 153 ms
43,600 KB |
testcase_19 | WA | - |
testcase_20 | AC | 36 ms
43,332 KB |
ソースコード
#include <map> #include <set> #include <list> #include <cmath> #include <ctime> #include <deque> #include <queue> #include <stack> #include <bitset> #include <cstdio> #include <limits> #include <vector> #include <cstdlib> #include <numeric> #include <sstream> #include <iostream> #include <algorithm> #include <functional> #include <iomanip> #include <unordered_map> #include <memory.h> #include <unordered_set> #include <fstream> #include <random> using namespace std; bool visited[201][201][1001]; int board[201][201]; int dy[4] = { -1,0,1,0 }; int dx[4] = { 0,1,0,-1 }; int main(void) { cin.tie(0); ios::sync_with_stdio(false); int n, v, ox, oy; cin >> n >> v >> oy >> ox; oy -= 1; ox -= 1; for (int i = 0; i < n; i++) { for (int j = 0; j < n; j++) { cin >> board[i][j]; } } memset(visited, false, sizeof(visited)); visited[0][0][v] = true; queue <pair<pair<int, int>, int>> que; que.push(make_pair(make_pair(0, 0), v)); while (!que.empty()) { int y = que.front().first.first; int x = que.front().first.second; int S = que.front().second; que.pop(); //cout << y << ' ' << x << ' ' << S << '\n'; if (y == n - 1 && x == n - 1) { cout << "YES" << '\n'; return 0; } for (int k = 0; k < 4; k++) { int ny = y + dy[k]; int nx = x + dx[k]; if (ny < 0 || ny >= n || nx < 0 || nx >= n) { continue; } if (S > board[ny][nx]) { int X = S - board[ny][nx]; if (ny == oy && nx == ox) { X = 2 * X; } if (X<=1000 && visited[ny][nx][X] == false) { visited[ny][nx][X] = true; que.push(make_pair(make_pair(ny, nx), X)); } } } } cout << "NO" << '\n'; return 0; }