結果
問題 | No.20 砂漠のオアシス |
ユーザー | fumofumofuni |
提出日時 | 2020-09-17 20:19:59 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,804 bytes |
コンパイル時間 | 1,854 ms |
コンパイル使用メモリ | 182,924 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-22 06:47:00 |
合計ジャッジ時間 | 2,839 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 3 ms
6,944 KB |
testcase_04 | AC | 3 ms
6,944 KB |
testcase_05 | AC | 21 ms
6,940 KB |
testcase_06 | AC | 22 ms
6,944 KB |
testcase_07 | AC | 22 ms
6,944 KB |
testcase_08 | AC | 15 ms
6,940 KB |
testcase_09 | AC | 22 ms
6,944 KB |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | WA | - |
testcase_13 | AC | 3 ms
6,944 KB |
testcase_14 | AC | 4 ms
6,944 KB |
testcase_15 | AC | 3 ms
6,944 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 6 ms
6,940 KB |
testcase_20 | AC | 3 ms
6,944 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; #define rep(i,n) for(ll i=0;i<n;i++) #define repl(i,l,r) for(ll i=(l);i<(r);i++) #define per(i,n) for(ll i=n-1;i>=0;i--) #define perl(i,r,l) for(ll i=r-1;i>=l;i--) #define fi first #define se second #define pb push_back #define ins insert #define pqueue(x) priority_queue<x,vector<x>,greater<x>> #define all(x) (x).begin(),(x).end() #define CST(x) cout<<fixed<<setprecision(x) #define rev(x) reverse(x); using ll=long long; using vl=vector<ll>; using vvl=vector<vector<ll>>; using pl=pair<ll,ll>; using vpl=vector<pl>; using vvpl=vector<vpl>; const ll MOD=1000000007; const ll MOD9=998244353; const int inf=1e9+10; const ll INF=4e18; const ll dy[8]={1,0,-1,0,1,1,-1,-1}; const ll dx[8]={0,-1,0,1,1,-1,1,-1}; template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } int main(){ ll n,v,sx,sy;cin >> n >> v >> sx >> sy; vvl g(n,vl(n)); rep(i,n)rep(j,n)cin >> g[i][j]; priority_queue<pair<ll,pl>,vector<pair<ll,pl>>,greater<pair<ll,pl>>> que; que.push(make_pair(0,make_pair(0,0))); vvl dist(n,vl(n,inf/10)); dist[0][0]=0; while(!que.empty()){ pl v=que.top().se; ll edge=que.top().fi; que.pop(); if(dist[v.fi][v.se]<edge)continue; rep(i,4){ ll ny=v.fi+dy[i],nx=v.se+dx[i]; if(ny<0||nx<0||ny>=n||nx>=n)continue; ll ed=g[ny][nx]; //if(grid[ny][nx]=='#')ed=mid; if(chmin(dist[ny][nx],dist[v.fi][v.se]+ed)){ //prev[ny][nx]=v; //restore que.push(make_pair(dist[ny][nx],make_pair(ny,nx))); } } } /*rep(i,n){ rep(j,n)cout << dist[i][j] <<" ";cout << endl; }*/ if(dist[n-1][n-1]<v)cout << "YES" <<endl,exit(0); if(dist[n-1][n-1]>=v&&sx==0)cout << "NO" <<endl,exit(0); if(dist[sx-1][sy-1]>=v)cout << "NO" <<endl,exit(0); v=(v-dist[sx-1][sy-1])*2; que.push(make_pair(0,make_pair(sx-1,sy-1))); dist=vvl(n,vl(n,INF/10)); dist[sx-1][sy-1]=0; while(!que.empty()){ pl v=que.top().se; ll edge=que.top().fi; que.pop(); if(dist[v.fi][v.se]<edge)continue; rep(i,4){ ll ny=v.fi+dy[i],nx=v.se+dx[i]; if(ny<0||nx<0||ny>=n||nx>=n)continue; ll ed=g[ny][nx]; //if(grid[ny][nx]=='#')ed=mid; if(chmin(dist[ny][nx],dist[v.fi][v.se]+ed)){ //prev[ny][nx]=v; //restore que.push(make_pair(dist[ny][nx],make_pair(ny,nx))); } } } if(dist[n-1][n-1]<v)cout << "YES" <<endl; else cout << "NO" <<endl; }