結果
| 問題 |
No.20 砂漠のオアシス
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-04-23 13:42:56 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,967 bytes |
| コンパイル時間 | 1,363 ms |
| コンパイル使用メモリ | 131,680 KB |
| 最終ジャッジ日時 | 2025-01-20 23:14:27 |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 17 WA * 4 |
ソースコード
#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][2001][2];
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));
queue <pair<pair<int, int>, pair<int, int>>> que;
if (v - board[0][0] > 0)
{
visited[0][0][v - board[0][0]][0] = true;
que.push(make_pair(make_pair(0, 0), make_pair(v - board[0][0], 0)));
}
while (!que.empty())
{
int y = que.front().first.first;
int x = que.front().first.second;
int S = que.front().second.first;
int f = que.front().second.second;
que.pop();
//cout << y << ' ' << x << ' ' << S << '\n';
if (y == n - 1 && x == n - 1)
{
cout << "YES" << '\n';
return 0;
}
if (y == oy && x == ox)
{
if (f == 0)
{
if (2*S<=2000 && visited[y][x][2*S][1] == false)
{
visited[y][x][2*S][1] = true;
que.push(make_pair(make_pair(y, x), make_pair(2*S, 1)));
}
}
}
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;
}
int X = S - board[ny][nx];
if (X > 0 && X <= 2000 && visited[ny][nx][X][f] == false)
{
visited[ny][nx][X][f] = true;
que.push(make_pair(make_pair(ny, nx), make_pair(X, f)));
}
}
}
cout << "NO" << '\n';
return 0;
}