結果

問題 No.340 雪の足跡
ユーザー face4face4
提出日時 2019-12-15 19:31:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 403 ms / 1,000 ms
コード長 2,248 bytes
コンパイル時間 822 ms
コンパイル使用メモリ 76,064 KB
実行使用メモリ 15,360 KB
最終ジャッジ日時 2024-07-02 18:19:45
合計ジャッジ時間 6,365 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,680 KB
testcase_01 AC 4 ms
7,552 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
7,424 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 3 ms
7,680 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 4 ms
7,552 KB
testcase_09 AC 4 ms
7,552 KB
testcase_10 AC 3 ms
7,552 KB
testcase_11 AC 5 ms
7,680 KB
testcase_12 AC 4 ms
7,936 KB
testcase_13 AC 4 ms
8,192 KB
testcase_14 AC 18 ms
9,600 KB
testcase_15 AC 24 ms
9,856 KB
testcase_16 AC 19 ms
8,960 KB
testcase_17 AC 29 ms
9,728 KB
testcase_18 AC 23 ms
9,728 KB
testcase_19 AC 29 ms
9,856 KB
testcase_20 AC 275 ms
15,360 KB
testcase_21 AC 174 ms
7,680 KB
testcase_22 AC 11 ms
11,264 KB
testcase_23 AC 311 ms
15,232 KB
testcase_24 AC 260 ms
15,360 KB
testcase_25 AC 286 ms
15,176 KB
testcase_26 AC 49 ms
9,472 KB
testcase_27 AC 13 ms
7,680 KB
testcase_28 AC 40 ms
9,216 KB
testcase_29 AC 287 ms
14,720 KB
testcase_30 AC 201 ms
11,520 KB
testcase_31 AC 312 ms
14,720 KB
testcase_32 AC 365 ms
15,312 KB
testcase_33 AC 293 ms
15,232 KB
testcase_34 AC 403 ms
15,232 KB
testcase_35 AC 289 ms
15,264 KB
testcase_36 AC 296 ms
15,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cstring>
#include<queue>
using namespace std;

int di[8] = {0,0,1,-1,1,1,-1,-1};
int dj[8] = {1,-1,0,0,1,-1,1,-1};
#define inRange(x,a,b) (a <= x && x < b)

int yoko[1001][1001] = {}, tate[1001][1001] = {}, dp[1001][1001];

void no(){
    cout << "Odekakedekinai.." << endl;
    exit(0);
}

int main(){
    int w, h, n;
    cin >> w >> h >> n;
    while(n--){
        int m;  cin >> m;
        int x;  cin >> x;
        while(m--){
            int y;  cin >> y;
            int i = x/w, j = x%w, ni = y/w, nj = y%w;
            if(i == ni){
                if(j > nj)  swap(j, nj);
                yoko[i][j]++;
                yoko[i][nj]--;
            }else if(j == nj){
                if(i > ni)  swap(i, ni);
                tate[i][j]++;
                tate[ni][j]--;
            }
            x = y;
        }
    }
    for(int i = 0; i < h; i++){
        for(int j = 1; j < w; j++){
            yoko[i][j] += yoko[i][j-1];
        }
    }
    for(int j = 0; j < w; j++){
        for(int i = 1; i < h; i++){
            tate[i][j] += tate[i-1][j];
        }
    }
    // :(
    if(h==1&&w==1){
        cout << 0 << endl;
        return 0;
    }
    if(tate[0][0]==0&&yoko[0][0]==0){
        no();
    }
    memset(dp, 0x3f, sizeof(dp));
    // for(int i = 0; i < h; i++){
    //     for(int j = 0; j < w; j++){
    //         cout << tate[i][j] << " \n"[j==w-1];
    //     }
    // }
    dp[0][0] = 0;
    queue<int> q;
    q.push(0);
    while(!q.empty()){
        int x = q.front();  q.pop();
        int i = x/w, j = x%w;
        if(i != 0 && dp[i-1][j] > dp[i][j]+1 && tate[i-1][j]>0){
            dp[i-1][j] = dp[i][j]+1;
            q.push((i-1)*w+j);
        }
        if(i != h-1 && dp[i+1][j] > dp[i][j]+1 && tate[i][j]>0){
            dp[i+1][j] = dp[i][j]+1;
            q.push((i+1)*w+j);
        }
        if(j != 0 && dp[i][j-1] > dp[i][j]+1 && yoko[i][j-1]>0){
            dp[i][j-1] = dp[i][j]+1;
            q.push(i*w+(j-1));
        }
        if(j != w-1 && dp[i][j+1] > dp[i][j]+1 && yoko[i][j]>0){
            dp[i][j+1] = dp[i][j]+1;
            q.push(i*w+(j+1));
        }
    }
    if(dp[h-1][w-1]>1e9)    no();
    else                    cout << dp[h-1][w-1] << endl;
    return 0;
}
0