結果

問題 No.2913 二次元距離空間
ユーザー maksimmaksim
提出日時 2024-10-04 22:58:18
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 20 ms / 2,000 ms
コード長 3,752 bytes
コンパイル時間 1,464 ms
コンパイル使用メモリ 176,708 KB
実行使用メモリ 17,608 KB
最終ジャッジ日時 2024-10-04 22:58:21
合計ジャッジ時間 2,441 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
12,000 KB
testcase_01 AC 4 ms
11,368 KB
testcase_02 AC 4 ms
12,644 KB
testcase_03 AC 4 ms
11,496 KB
testcase_04 AC 4 ms
12,388 KB
testcase_05 AC 4 ms
11,880 KB
testcase_06 AC 4 ms
12,520 KB
testcase_07 AC 4 ms
11,624 KB
testcase_08 AC 5 ms
11,492 KB
testcase_09 AC 4 ms
12,516 KB
testcase_10 AC 4 ms
12,004 KB
testcase_11 AC 4 ms
12,008 KB
testcase_12 AC 4 ms
12,136 KB
testcase_13 AC 4 ms
12,392 KB
testcase_14 AC 4 ms
12,520 KB
testcase_15 AC 4 ms
12,660 KB
testcase_16 AC 11 ms
17,432 KB
testcase_17 AC 13 ms
17,456 KB
testcase_18 AC 19 ms
17,484 KB
testcase_19 AC 18 ms
17,484 KB
testcase_20 AC 20 ms
17,608 KB
testcase_21 AC 6 ms
17,440 KB
testcase_22 AC 6 ms
17,304 KB
testcase_23 AC 18 ms
17,480 KB
testcase_24 AC 6 ms
17,432 KB
testcase_25 AC 18 ms
17,608 KB
testcase_26 AC 6 ms
17,436 KB
testcase_27 AC 17 ms
17,484 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int32_t main()':
main.cpp:43:22: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   43 |             for(auto [dx,dy]:d)
      |                      ^
main.cpp:82:22: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   82 |             for(auto [dx,dy]:d)
      |                      ^

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
#define int long long
int p;
int po(int a,int b) {if(b==0) return 1; if(b==1) return a; if(b%2==0) {int u=po(a,b/2);return (u*1LL*u)%p;} else {int u=po(a,b-1);return (a*1LL*u)%p;}}
int inv(int x) {return po(x,p-2);}
mt19937 rnd;
#define app push_back
#define all(x) (x).begin(),(x).end()
#ifdef LOCAL
#define debug(...) [](auto...a){ ((cout << a << ' '), ...) << endl;}(#__VA_ARGS__, ":", __VA_ARGS__)
#define debugv(v) do {cout<< #v <<" : {"; for(int izxc=0;izxc<v.size();++izxc) {cout << v[izxc];if(izxc+1!=v.size()) cout << ","; }cout <<"}"<< endl;} while(0)
#else
#define debug(...)
#define debugv(v)
#endif
#define lob(a,x) lower_bound(all(a),x)
#define upb(a,x) upper_bound(all(a),x)
const int inf=1e18;
const int maxn=1005;
vector<pair<int,int> > cur;
vector<pair<int,int> > nx;
vector<pair<int,int> > d={{-1,0},{0,-1},{1,0},{0,1}};
int ans[maxn][maxn];
int uu[maxn][maxn];
int32_t main()
{
    ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
    int n,m;cin>>n>>m;string s[n];for(int i=0;i<n;++i) {cin>>s[i];}
    {
    cur.app({0,0});
    for(int i=0;i<maxn;++i) {for(int j=0;j<maxn;++j) {ans[i][j]=inf;}} ans[0][0]=0;
    int zx=0;
    while(!cur.empty())
    {
        nx.clear();
        while(!cur.empty())
        {
            auto h=cur.back();cur.pop_back();
            debug(h.first,h.second);
            if(ans[h.first][h.second]!=zx) {continue;}
            for(auto [dx,dy]:d)
            {
                if(h.first+dx>=0 && h.first+dx<n && h.second+dy>=0 && h.second+dy<m)
                {
                    if(s[h.first+dx][h.second+dy]!='#')
                    {
                        if(dx && ans[h.first+dx][h.second+dy]>zx)
                        {
                            ans[h.first+dx][h.second+dy]=zx;cur.app({h.first+dx,h.second+dy});
                        }
                        else if(dy && ans[h.first+dx][h.second+dy]>zx+1)
                        {
                            debug(h.first+dx,h.second+dy);
                            ans[h.first+dx][h.second+dy]=zx+1;nx.app({h.first+dx,h.second+dy});
                        }
                    }
                }
            }
        }
        cur=nx;
        ++zx;
    }
    for(int i=0;i<n;++i) for(int j=0;j<m;++j) uu[i][j]=ans[i][j];
    if(ans[n-1][m-1]==inf) {cout<<"No";return 0;}
    cout<<"Yes"<<'\n';
    cout<<ans[n-1][m-1]<<' ';
    }
    {
    cur.app({0,0});
    for(int i=0;i<maxn;++i) {for(int j=0;j<maxn;++j) {ans[i][j]=inf;}} ans[0][0]=0;
    int zx=0;
    while(!cur.empty())
    {
        nx.clear();
        while(!cur.empty())
        {
            auto h=cur.back();cur.pop_back();
            debug(h.first,h.second);
            if(ans[h.first][h.second]!=zx) {continue;}
            for(auto [dx,dy]:d)
            {
                if(h.first+dx>=0 && h.first+dx<n && h.second+dy>=0 && h.second+dy<m)
                {
                    if(s[h.first+dx][h.second+dy]!='#' && uu[h.first+dx][h.second+dy]==uu[h.first][h.second]+(!!dy))
                    {
                        if(dy && ans[h.first+dx][h.second+dy]>zx)
                        {
                            ans[h.first+dx][h.second+dy]=zx;cur.app({h.first+dx,h.second+dy});
                        }
                        else if(dx && ans[h.first+dx][h.second+dy]>zx+1)
                        {
                            debug(h.first+dx,h.second+dy);
                            ans[h.first+dx][h.second+dy]=zx+1;nx.app({h.first+dx,h.second+dy});
                        }
                    }
                }
            }
        }
        cur=nx;
        ++zx;
    }
    if(ans[n-1][m-1]==inf) {cout<<"No";return 0;}
    cout<<ans[n-1][m-1]<<' ';
    }
    return 0;
}
0