結果
問題 | No.20 砂漠のオアシス |
ユーザー | rogi52 |
提出日時 | 2022-10-22 05:21:37 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,674 bytes |
コンパイル時間 | 2,289 ms |
コンパイル使用メモリ | 213,160 KB |
実行使用メモリ | 814,412 KB |
最終ジャッジ日時 | 2024-07-01 11:11:03 |
合計ジャッジ時間 | 4,857 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i = 0; i < (n); i++) using namespace std; using ll = long long; using ld = long double; vector<int> bfs(vector<int> graph[], int s) { int INF = numeric_limits<int>::max(); vector<int> dist(80000000, INF); queue<int> q; dist[s] = 0, q.push(s); while(!q.empty()){ int u = q.front(); q.pop(); for(int v : graph[u]) if(dist[v] == INF) dist[v] = dist[u] + 1, q.push(v); } return dist; } vector<int> G[80000000]; int main(){ cin.tie(0); ios::sync_with_stdio(0); int N,V,Ox,Oy; cin >> N >> V >> Ox >> Oy; Ox--, Oy--; vector<vector<int>> L(N, vector<int>(N)); rep(i,N)rep(j,N) cin >> L[i][j]; auto h = [&](int i, int j, int v, int o) { return ((i * N + j) * (2 * V) + v) * 2 + o; }; int di[] = {0, +1, 0, -1}; int dj[] = {+1, 0, -1, 0}; //vector<vector<int>> G(N * N * (2 * V) * 2); rep(i,N)rep(j,N)rep(v,2*V)rep(d,4)rep(o,2) { int ni = i + di[d], nj = j + dj[d]; if(0 <= ni && ni < N && 0 <= nj && nj < N) { int nv = (v + 1) - L[ni][nj] - 1; if(0 <= nv && nv < 2 * V) { G[h(i, j, v, o)].push_back(h(ni, nj, nv, o)); if(make_pair(ni, nj) == make_pair(Ox, Oy) && o == 0) { nv = (nv + 1) * 2 - 1; if(0 <= nv && nv < 2 * V) G[h(i, j, v, 0)].push_back(h(ni, nj, nv, 1)); } } } } auto dist = bfs(G, h(0, 0, V - 1, 0)); int ok = 0; rep(v,2*V)rep(o,2) if(dist[h(N - 1, N - 1, v, o)] < int(1e9)) ok = 1; cout << (ok ? "YES" : "NO") << endl; }