結果
問題 | No.2913 二次元距離空間 |
ユーザー | Nzt3 |
提出日時 | 2024-10-04 22:27:16 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 26 ms / 2,000 ms |
コード長 | 1,272 bytes |
コンパイル時間 | 2,301 ms |
コンパイル使用メモリ | 214,092 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-04 22:27:19 |
合計ジャッジ時間 | 2,908 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 1 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 1 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | AC | 2 ms
6,816 KB |
testcase_11 | AC | 1 ms
6,816 KB |
testcase_12 | AC | 2 ms
6,816 KB |
testcase_13 | AC | 2 ms
6,816 KB |
testcase_14 | AC | 1 ms
6,816 KB |
testcase_15 | AC | 2 ms
6,816 KB |
testcase_16 | AC | 7 ms
6,816 KB |
testcase_17 | AC | 7 ms
6,816 KB |
testcase_18 | AC | 26 ms
6,820 KB |
testcase_19 | AC | 25 ms
6,820 KB |
testcase_20 | AC | 25 ms
6,816 KB |
testcase_21 | AC | 3 ms
6,816 KB |
testcase_22 | AC | 3 ms
6,820 KB |
testcase_23 | AC | 25 ms
6,816 KB |
testcase_24 | AC | 3 ms
6,820 KB |
testcase_25 | AC | 26 ms
6,816 KB |
testcase_26 | AC | 4 ms
6,820 KB |
testcase_27 | AC | 26 ms
6,816 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll=long long; constexpr int MOD=998244353; #define rep(i,n) for(int i=0;i<(int)(n);i++) #define rep2(i,l,r) for(int i=(l);i<(int)(r);i++) #define all(v) v.begin(),v.end() int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int H,W; cin>>H>>W; vector<string>S(H); for(auto &i:S)cin>>i; vector dist(H,vector(W,1ll<<60)); dist[0][0]=0; auto xy2i=[W](int x,int y){ return x*W+y; }; auto i2xy=[W](int i){ return make_pair(i/W,i%W); }; using dijk=pair<ll,int>; priority_queue<dijk,vector<dijk>,greater<dijk>> pq; pq.push({0ll,0}); int dx[]={0,1,0,-1}; int dy[]={-1,0,1,0}; ll cost[]={1ll<<32,1ll,1ll<<32,1ll}; auto bound_ok=[H,W](int x,int y){ return x>=0&&x<H&&y>=0&&y<W; }; while(pq.size()){ auto d=pq.top(); pq.pop(); auto [x,y]=i2xy(d.second); if(dist[x][y]<d.first)continue; rep(k,4){ int x2=x+dx[k],y2=y+dy[k]; if(bound_ok(x2,y2)&&S[x2][y2]=='.'&&dist[x2][y2]>d.first+cost[k]){ dist[x2][y2]=d.first+cost[k]; pq.push({dist[x2][y2],xy2i(x2,y2)}); } } } ll ans=dist[H-1][W-1]; if(ans==(1ll<<60)){ cout<<"No\n"; }else{ cout<<"Yes\n"; cout<<(ans>>32)<<' '<<(ans%(1ll<<32))<<'\n'; } }