結果

問題 No.1638 Robot Maze
ユーザー didi just isdidi just is
提出日時 2023-04-29 20:59:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 6 ms / 2,000 ms
コード長 1,480 bytes
コンパイル時間 1,637 ms
コンパイル使用メモリ 173,228 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-29 11:05:16
合計ジャッジ時間 3,365 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 5 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 4 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 4 ms
5,376 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 3 ms
5,376 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 AC 3 ms
5,376 KB
testcase_25 AC 3 ms
5,376 KB
testcase_26 AC 3 ms
5,376 KB
testcase_27 AC 3 ms
5,376 KB
testcase_28 AC 3 ms
5,376 KB
testcase_29 AC 4 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 5 ms
5,376 KB
testcase_33 AC 5 ms
5,376 KB
testcase_34 AC 5 ms
5,376 KB
testcase_35 AC 5 ms
5,376 KB
testcase_36 AC 6 ms
5,376 KB
testcase_37 AC 5 ms
5,376 KB
testcase_38 AC 5 ms
5,376 KB
testcase_39 AC 5 ms
5,376 KB
testcase_40 AC 5 ms
5,376 KB
testcase_41 AC 6 ms
5,376 KB
testcase_42 AC 5 ms
5,376 KB
testcase_43 AC 5 ms
5,376 KB
testcase_44 AC 5 ms
5,376 KB
testcase_45 AC 5 ms
5,376 KB
testcase_46 AC 5 ms
5,376 KB
testcase_47 AC 5 ms
5,376 KB
testcase_48 AC 5 ms
5,376 KB
testcase_49 AC 5 ms
5,376 KB
testcase_50 AC 6 ms
5,376 KB
testcase_51 AC 6 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:48:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   48 |         auto [x,y,v]=q.top(); q.pop();
      |              ^
main.cpp:51:18: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   51 |         for(auto [nx,ny,w]:ve[x][y]){
      |                  ^

ソースコード

diff #

#include<bits/stdc++.h>
#define int long long
using namespace std;
const int N=110;
struct P{
    int x,y,v;
    bool operator>(const P&a)const {
        return v>a.v;
    }
};
vector<P>ve[N][N];
int n,m;
int k,p;
int sx,sy,tx,ty;
int dx[]={-1,1,0,0},dy[]={0,0,1,-1};
int value[4];
char s[N][N];
bool vis[N][N];
int dist[N][N];
signed main(){
    cin>>n>>m;
    for(int i=0;i<4;i++) cin>>value[i];
    cin>>k>>p;
    cin>>sx>>sy>>tx>>ty;
    sx--,sy--,tx--,ty--;
    for(int i=0;i<n;i++) cin>>s[i];
    for(int i=0;i<n;i++){
        for(int j=0;j<m;j++){
            if(s[i][j]=='#') continue;
            for(int z=0;z<4;z++){
                int x=i+dx[z],y=j+dy[z];
                if(x<0||y<0||x>=n||y>=m||s[x][y]=='#') continue;
                if(s[x][y]=='@'){
                    ve[i][j].push_back({x,y,value[z]+p});
                }
                else{
                    ve[i][j].push_back({x,y,value[z]});
                }
            }
        }
    }

    memset(dist,0x3f,sizeof dist);
    priority_queue<P,vector<P>,greater<P>>q;
    q.push({sx,sy,0});
    dist[sx][sy]=0;
    while(q.size()){
        auto [x,y,v]=q.top(); q.pop();
        if(vis[x][y]) continue;
        vis[x][y]=1;
        for(auto [nx,ny,w]:ve[x][y]){
            if(dist[nx][ny]>dist[x][y]+w){
                dist[nx][ny]=dist[x][y]+w;
                q.push({nx,ny,dist[nx][ny]});
            }
        }
    }
    if(dist[tx][ty]<=k) cout<<"Yes";
    else cout<<"No";
    return 0;
}
0