結果

問題 No.2646 Cycle Maze
ユーザー GOTKAKOGOTKAKO
提出日時 2024-02-27 08:18:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 814 ms / 2,500 ms
コード長 1,190 bytes
コンパイル時間 2,353 ms
コンパイル使用メモリ 213,476 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-09-29 11:55:30
合計ジャッジ時間 10,347 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 1 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 1 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 1 ms
6,820 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 1 ms
6,816 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 1 ms
6,820 KB
testcase_17 AC 2 ms
6,816 KB
testcase_18 AC 1 ms
6,816 KB
testcase_19 AC 1 ms
6,820 KB
testcase_20 AC 2 ms
6,816 KB
testcase_21 AC 2 ms
6,820 KB
testcase_22 AC 2 ms
6,816 KB
testcase_23 AC 2 ms
6,820 KB
testcase_24 AC 1 ms
6,820 KB
testcase_25 AC 254 ms
6,820 KB
testcase_26 AC 171 ms
6,820 KB
testcase_27 AC 167 ms
6,816 KB
testcase_28 AC 35 ms
6,816 KB
testcase_29 AC 281 ms
6,820 KB
testcase_30 AC 190 ms
6,820 KB
testcase_31 AC 111 ms
6,816 KB
testcase_32 AC 2 ms
6,820 KB
testcase_33 AC 9 ms
6,820 KB
testcase_34 AC 27 ms
6,816 KB
testcase_35 AC 138 ms
6,820 KB
testcase_36 AC 13 ms
6,816 KB
testcase_37 AC 41 ms
6,820 KB
testcase_38 AC 33 ms
6,820 KB
testcase_39 AC 174 ms
6,816 KB
testcase_40 AC 86 ms
6,816 KB
testcase_41 AC 141 ms
6,816 KB
testcase_42 AC 18 ms
6,820 KB
testcase_43 AC 17 ms
6,820 KB
testcase_44 AC 66 ms
6,816 KB
testcase_45 AC 175 ms
6,816 KB
testcase_46 AC 217 ms
6,820 KB
testcase_47 AC 814 ms
6,816 KB
testcase_48 AC 164 ms
6,820 KB
testcase_49 AC 800 ms
6,816 KB
testcase_50 AC 196 ms
6,816 KB
testcase_51 AC 446 ms
6,820 KB
testcase_52 AC 502 ms
6,816 KB
testcase_53 AC 757 ms
6,816 KB
testcase_54 AC 752 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    int H,W,T; cin >> H >> W >> T;
    int sx,sy,gx,gy; cin >> sx >> sy >> gx >> gy;
    sx--; sy--; gx--; gy--;

    vector<vector<bool>> ok(H,vector<bool>(W));
    vector<vector<int>> A(H,vector<int>(W));
    for(int i=0; i<H; i++) for(int k=0; k<W; k++){
        char c; cin >> c;
        A.at(i).at(k) = c-'0'+1;
    }
    ok.at(sx).at(sy) = true;

    bool yes = false;
    vector<int> dx = {-1,0,1,0},dy = {0,1,0,-1};
    for(int i=1; i<T; i++){
        vector<vector<bool>> next(H,vector<bool>(W));
        for(int x=0; x<H; x++) for(int y=0; y<W; y++){
            if(!ok.at(x).at(y)) continue;
            for(int k=0; k<4; k++){
                int nx = x+dx.at(k),ny = y+dy.at(k);
                if(nx < 0 || nx >= H || ny < 0 || ny >= W) continue;
                
                if((i+1)%A.at(nx).at(ny)) next.at(nx).at(ny) = true;
            }
            if((i+1)%A.at(x).at(y)) next.at(x).at(y) = true;
        }
        swap(ok,next);
        if(ok.at(gx).at(gy)) yes = true;
    }
    if(yes) cout << "Yes" << endl;
    else cout << "No" << endl;
}
0