結果

問題 No.1638 Robot Maze
ユーザー didi just isdidi just is
提出日時 2023-04-29 11:33:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 1,790 bytes
コンパイル時間 1,698 ms
コンパイル使用メモリ 174,452 KB
実行使用メモリ 15,624 KB
最終ジャッジ日時 2024-11-18 09:22:05
合計ジャッジ時間 4,766 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
13,896 KB
testcase_01 AC 5 ms
13,916 KB
testcase_02 AC 5 ms
13,880 KB
testcase_03 AC 7 ms
14,952 KB
testcase_04 AC 3 ms
13,924 KB
testcase_05 AC 5 ms
13,984 KB
testcase_06 AC 5 ms
14,088 KB
testcase_07 AC 3 ms
13,936 KB
testcase_08 AC 4 ms
14,212 KB
testcase_09 AC 4 ms
14,640 KB
testcase_10 AC 4 ms
13,976 KB
testcase_11 AC 4 ms
13,920 KB
testcase_12 AC 4 ms
13,964 KB
testcase_13 AC 4 ms
13,912 KB
testcase_14 AC 5 ms
14,628 KB
testcase_15 AC 6 ms
14,672 KB
testcase_16 AC 5 ms
14,708 KB
testcase_17 AC 5 ms
14,804 KB
testcase_18 AC 4 ms
14,352 KB
testcase_19 AC 28 ms
14,880 KB
testcase_20 AC 26 ms
14,924 KB
testcase_21 AC 23 ms
14,656 KB
testcase_22 AC 5 ms
14,620 KB
testcase_23 AC 6 ms
14,716 KB
testcase_24 AC 21 ms
14,996 KB
testcase_25 AC 21 ms
14,912 KB
testcase_26 AC 5 ms
14,596 KB
testcase_27 AC 6 ms
14,860 KB
testcase_28 AC 6 ms
14,600 KB
testcase_29 AC 5 ms
14,348 KB
testcase_30 AC 4 ms
13,844 KB
testcase_31 AC 4 ms
14,636 KB
testcase_32 AC 10 ms
14,784 KB
testcase_33 AC 21 ms
15,120 KB
testcase_34 AC 21 ms
14,888 KB
testcase_35 AC 61 ms
15,344 KB
testcase_36 AC 83 ms
15,336 KB
testcase_37 AC 12 ms
15,144 KB
testcase_38 AC 4 ms
13,960 KB
testcase_39 AC 22 ms
14,960 KB
testcase_40 AC 23 ms
15,228 KB
testcase_41 AC 25 ms
15,332 KB
testcase_42 AC 72 ms
15,184 KB
testcase_43 AC 77 ms
15,180 KB
testcase_44 AC 135 ms
15,564 KB
testcase_45 AC 166 ms
15,564 KB
testcase_46 AC 100 ms
15,452 KB
testcase_47 AC 135 ms
15,232 KB
testcase_48 AC 152 ms
15,624 KB
testcase_49 AC 64 ms
15,280 KB
testcase_50 AC 73 ms
15,356 KB
testcase_51 AC 100 ms
15,292 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:35:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   35 |         auto [x,y,cnt]=q.front();q.pop();
      |              ^

ソースコード

diff #

#include<bits/stdc++.h>
#define int long long
using namespace std;
const int N=110;
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][N];
int dist[N][N][N];
struct P{
    int x,y;
    int cnt;
};
int num=0;
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]=='@') num++;
        }
    }
    queue<P>q;
    q.push({sx,sy,0});vis[sx][sy][0]=1;
    memset(dist,0x3f,sizeof dist);
    dist[sx][sy][0]=0;
    while(q.size()){
        auto [x,y,cnt]=q.front();q.pop();
        vis[x][y][cnt]=0;
        if(x==tx&&y==ty){
            if(dist[x][y][cnt]<=k){
                cout<<"Yes";
                return 0;
            }
        }
        for(int i=0;i<4;i++){
            int a=x+dx[i],b=y+dy[i];
            if(a<0||b<0||a>=n||b>=m) continue;
            if(s[a][b]=='#') continue;
            if(s[a][b]=='@'&&cnt<num){
                if(dist[a][b][cnt+1]>dist[x][y][cnt]+p+value[i]){
                    dist[a][b][cnt+1]=dist[x][y][cnt]+p+value[i];
                    if(!vis[a][b][cnt+1]){
                        q.push({a,b,cnt+1});
                        vis[a][b][cnt+1]=1;
                    }
                }
            }
            else if(s[a][b]=='.'){
                if(dist[a][b][cnt]>dist[x][y][cnt]+value[i]){
                    dist[a][b][cnt]=dist[x][y][cnt]+value[i];
                    if(!vis[a][b][cnt]){
                        q.push({a,b,cnt});
                        vis[a][b][cnt]=1;
                    }
                }
            }
        }
    }
    cout<<"No";
    return 0;
}
0