結果

問題 No.2913 二次元距離空間
ユーザー makichanmakichan
提出日時 2024-10-04 21:51:20
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 1,721 bytes
コンパイル時間 4,802 ms
コンパイル使用メモリ 320,180 KB
実行使用メモリ 30,996 KB
最終ジャッジ日時 2024-10-04 21:51:27
合計ジャッジ時間 6,688 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 6 ms
5,248 KB
testcase_16 AC 46 ms
23,424 KB
testcase_17 AC 54 ms
23,364 KB
testcase_18 AC 98 ms
28,776 KB
testcase_19 AC 97 ms
30,592 KB
testcase_20 AC 94 ms
28,224 KB
testcase_21 AC 50 ms
25,216 KB
testcase_22 AC 48 ms
25,088 KB
testcase_23 AC 92 ms
29,824 KB
testcase_24 AC 52 ms
25,976 KB
testcase_25 AC 106 ms
29,908 KB
testcase_26 AC 52 ms
25,064 KB
testcase_27 AC 97 ms
30,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using mint = atcoder::static_modint<998244353>;
//using mint = atcoder::static_modint<1000000007>;
using namespace std;
using namespace atcoder;
using ld = long double;
using ll = long long;
#define mp(a,b) make_pair(a,b)
#define rep(i,s,n) for(int i=s; i<n; i++)
const vector<int> dx{1,0,-1,0},dy{0,1,0,-1};


struct dijkstra{
    public:
    dijkstra():_n(0){}
    dijkstra(int n):_n(n),G(n){}
    void add_edge(int from,int to,ll d){
        G[from].push_back({to,d});
    }
    vector<ll> start_from(int start){
        vector<ll> dist(_n,-1);
        priority_queue<pair<ll,int>,vector<pair<ll,int>>,greater<pair<ll,int>>> Q;
        Q.push({0,start});
        dist[start]=0;
        while(!Q.empty()){
            auto p=Q.top();
            Q.pop();
            int now=p.second;
            ll d=p.first;
            if(d!=dist[now])continue;
            for(auto e:G[now]){
                int to=e.first;
                ll w=e.second;
                if(dist[to]==-1 || w+d<dist[to])Q.push(mp(w+d,to)),dist[to]=w+d;
            }
        }
        return dist;
    }
    private:
        int _n;
        vector<vector<pair<int,ll>>> G;
};

int main(){
    int h,w;
    cin >> h >> w;
    vector<string> s(h);
    rep(i,0,h)cin >> s[i];
    dijkstra G(h*w);
    rep(i,0,h)rep(j,0,w-1)if(s[i][j]==s[i][j+1]){
        G.add_edge(i*w+j,i*w+j+1,1000000);
        G.add_edge(i*w+j+1,i*w+j,1000000);
    }
    rep(i,0,h-1)rep(j,0,w)if(s[i][j]==s[i+1][j]){
        G.add_edge(i*w+j,(i+1)*w+j,1);
        G.add_edge((i+1)*w+j,i*w+j,1);
    }
    ll ans=G.start_from(0).back();
    if(ans==-1)cout << "No";
    else cout << "Yes\n" << ans/1000000 << " " << ans%1000000; 
}
0