結果

問題 No.20 砂漠のオアシス
ユーザー Yang33Yang33
提出日時 2018-04-09 04:29:54
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 17 ms / 5,000 ms
コード長 3,870 bytes
コンパイル時間 1,742 ms
コンパイル使用メモリ 181,832 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-26 20:33:06
合計ジャッジ時間 2,948 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #
プレゼンテーションモードにする

#include <bits/stdc++.h>
using namespace std;
using VS = vector<string>; using LL = long long;
using VI = vector<int>; using VVI = vector<VI>;
using PII = pair<int, int>; using PLL = pair<LL, LL>;
using VL = vector<LL>; using VVL = vector<VL>;
#define ALL(a) begin((a)),end((a))
#define RALL(a) (a).rbegin(), (a).rend()
#define PB push_back
#define EB emplace_back
#define MP make_pair
#define SZ(a) int((a).size())
#define SORT(c) sort(ALL((c)))
#define RSORT(c) sort(RALL((c)))
#define UNIQ(c) (c).erase(unique(ALL((c))), end((c)))
#define FOR(i, s, e) for (int(i) = (s); (i) < (e); (i)++)
#define FORR(i, s, e) for (int(i) = (s); (i) > (e); (i)--)
#define debug(x) cerr << #x << ": " << x << endl
const int INF = 1e9; const LL LINF = 1e16;
const LL MOD = 1000000007; const double PI = acos(-1.0);
int DX[8] = { 0, 0, 1, -1, 1, 1, -1, -1 }; int DY[8] = { 1, -1, 0, 0, 1, -1, 1, -1 };
/* ----- 2018/04/08 Problem: yukicoder 020 / Link: http://yukicoder.me/problems/no/020 ----- */
/* ------------
N×N
(Ox,Oy)
12()
(1,1) (N,N)
(Lxy)
0
0
1
(1,1)
---------- */
/* ----------
-------- */
LL N;
LL ans = 0LL;
VVI dijkstra(int sy, int sx, VVI& cost) {
int n = SZ(cost);
using tp = tuple<int, int, int>;
priority_queue<tp, vector<tp>, greater<tp>>pq;
VVI dist(n, VI(n, INF));
pq.push(tp(0, sy, sx));
dist[sy][sx] = 0;
while (!pq.empty()) {
int d, y, x; tie(d, y, x) = pq.top(); pq.pop();
if (dist[y][x] < d)continue;
FOR(k, 0, 4) {
int ny = y + DY[k], nx = x + DX[k];
if (0 <= ny&& ny < n && 0 <= nx && nx < n) {
if (dist[ny][nx] > dist[y][x] + cost[ny][nx]) {
dist[ny][nx] = dist[y][x] + cost[ny][nx];
pq.push(tp(dist[ny][nx], ny, nx));
}
}
}
}
return dist;
}
int main() {
cin.tie(0);
ios_base::sync_with_stdio(false);
int V, oy, ox;
cin >> N>>V>>ox>>oy;
oy--, ox--;
VVI cost(N, VI(N));
FOR(i, 0, N) {
FOR(j, 0, N) {
cin >> cost[i][j];
}
}
VVI dist = dijkstra(0,0,cost);
if (dist[N-1][N-1] < V) {
cout << "YES" << endl;
}
else if (oy == -1 && dist[N-1][N-1]>=V) {
cout << "NO" << endl;
}
else {
int recover = 2 * (V - dist[oy][ox]);
VVI ndist = dijkstra(oy, ox, cost);
if (ndist[N-1][N-1] < recover) {
cout << "YES" << endl;
}
else {
cout << "NO" << endl;
}
}
return 0;
}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
0