結果

問題 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  
実行時間 188 ms / 2,000 ms
コード長 1,790 bytes
コンパイル時間 1,655 ms
コンパイル使用メモリ 173,476 KB
実行使用メモリ 15,616 KB
最終ジャッジ日時 2024-04-29 07:48:06
合計ジャッジ時間 5,144 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
13,696 KB
testcase_01 AC 6 ms
13,952 KB
testcase_02 AC 5 ms
13,824 KB
testcase_03 AC 11 ms
15,056 KB
testcase_04 AC 5 ms
13,824 KB
testcase_05 AC 6 ms
14,080 KB
testcase_06 AC 5 ms
13,908 KB
testcase_07 AC 4 ms
13,884 KB
testcase_08 AC 4 ms
13,952 KB
testcase_09 AC 5 ms
13,940 KB
testcase_10 AC 5 ms
13,952 KB
testcase_11 AC 6 ms
13,872 KB
testcase_12 AC 5 ms
13,824 KB
testcase_13 AC 5 ms
14,080 KB
testcase_14 AC 6 ms
14,464 KB
testcase_15 AC 7 ms
14,600 KB
testcase_16 AC 7 ms
14,700 KB
testcase_17 AC 6 ms
14,632 KB
testcase_18 AC 5 ms
13,952 KB
testcase_19 AC 34 ms
14,856 KB
testcase_20 AC 32 ms
14,848 KB
testcase_21 AC 25 ms
14,676 KB
testcase_22 AC 7 ms
14,712 KB
testcase_23 AC 7 ms
14,720 KB
testcase_24 AC 25 ms
14,848 KB
testcase_25 AC 25 ms
14,592 KB
testcase_26 AC 6 ms
14,336 KB
testcase_27 AC 9 ms
14,720 KB
testcase_28 AC 7 ms
14,720 KB
testcase_29 AC 6 ms
14,208 KB
testcase_30 AC 6 ms
13,824 KB
testcase_31 AC 6 ms
13,952 KB
testcase_32 AC 10 ms
14,720 KB
testcase_33 AC 26 ms
15,104 KB
testcase_34 AC 24 ms
14,976 KB
testcase_35 AC 77 ms
15,232 KB
testcase_36 AC 100 ms
15,360 KB
testcase_37 AC 14 ms
15,104 KB
testcase_38 AC 6 ms
13,952 KB
testcase_39 AC 25 ms
14,848 KB
testcase_40 AC 29 ms
15,104 KB
testcase_41 AC 31 ms
15,104 KB
testcase_42 AC 86 ms
15,164 KB
testcase_43 AC 93 ms
15,360 KB
testcase_44 AC 150 ms
15,616 KB
testcase_45 AC 188 ms
15,592 KB
testcase_46 AC 112 ms
15,488 KB
testcase_47 AC 151 ms
15,268 KB
testcase_48 AC 171 ms
15,488 KB
testcase_49 AC 74 ms
15,232 KB
testcase_50 AC 83 ms
15,232 KB
testcase_51 AC 111 ms
15,488 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