結果

問題 No.2913 二次元距離空間
ユーザー umimelumimel
提出日時 2024-10-04 23:20:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,651 bytes
コンパイル時間 1,937 ms
コンパイル使用メモリ 180,668 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-04 23:20:26
合計ジャッジ時間 2,391 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 WA -
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 1 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 1 ms
6,820 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 1 ms
6,816 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 12 ms
6,816 KB
testcase_19 AC 10 ms
6,816 KB
testcase_20 AC 12 ms
6,820 KB
testcase_21 AC 4 ms
6,820 KB
testcase_22 AC 3 ms
6,816 KB
testcase_23 AC 11 ms
6,816 KB
testcase_24 AC 3 ms
6,816 KB
testcase_25 AC 11 ms
6,820 KB
testcase_26 AC 3 ms
6,820 KB
testcase_27 AC 10 ms
6,820 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'void solve()':
main.cpp:28:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   28 |         auto [now_i, now_j] = que.front();
      |              ^

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
#define all(a) (a).begin(), (a).end()
#define pb push_back
#define fi first
#define se second
mt19937_64 rng(chrono::system_clock::now().time_since_epoch().count());
const ll MOD1000000007 = 1000000007;
const ll MOD998244353 = 998244353;
const ll MOD[3] = {999727999, 1070777777, 1000000007};
const ll LINF = 1LL << 60LL;
const int IINF = (1 << 30) - 2;


void solve(){
    int h, w; cin >> h >> w;
    vector<string> s(h);
    for(int i=0; i<h; i++) cin >> s[i];

    int di[4] = {0, 0, 1, -1}, dj[4] = {1, -1, 0, 0};
    vector<vector<pair<int, int>>> dist(h, vector<pair<int, int>>(w, {IINF, IINF}));
    dist[0][0] = {0, 0};
    queue<pair<int, int>> que;
    que.push({0, 0});
    while(!que.empty()){
        auto [now_i, now_j] = que.front();
        que.pop();
        for(int k=0; k<4; k++){
            int nxt_i = now_i + di[k];
            int nxt_j = now_j + dj[k];
            if(nxt_i<0||nxt_j<0||h<=nxt_i||w<=nxt_j) continue;
            if(s[nxt_i][nxt_j]=='#') continue;
            pair<int, int> nxt;
            nxt.fi = dist[now_i][now_j].fi + abs(di[k]), nxt.se = dist[now_i][now_j].se + abs(dj[k]);
            if(nxt < dist[nxt_i][nxt_j]){
                dist[nxt_i][nxt_j] = nxt;
                que.push({nxt_i, nxt_j});
            }
        }
    }

    if(dist[h-1][w-1]==make_pair(IINF, IINF)) cout << "No\n";
    else{
        cout << "Yes\n";
        cout << dist[h-1][w-1].fi << ' ' << dist[h-1][w-1].se << '\n';
    }
}

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    
    int T=1;
    //cin >> T;
    while(T--) solve();
}
0