結果

問題 No.340 雪の足跡
ユーザー maimai
提出日時 2016-06-13 19:02:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 374 ms / 1,000 ms
コード長 2,174 bytes
コンパイル時間 1,768 ms
コンパイル使用メモリ 175,276 KB
実行使用メモリ 23,372 KB
最終ジャッジ日時 2024-10-11 05:15:23
合計ジャッジ時間 8,069 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,632 KB
testcase_01 AC 3 ms
7,776 KB
testcase_02 AC 3 ms
7,628 KB
testcase_03 AC 3 ms
7,640 KB
testcase_04 AC 3 ms
7,776 KB
testcase_05 AC 3 ms
7,624 KB
testcase_06 AC 3 ms
7,656 KB
testcase_07 AC 3 ms
7,632 KB
testcase_08 AC 3 ms
7,776 KB
testcase_09 AC 3 ms
7,776 KB
testcase_10 AC 3 ms
7,912 KB
testcase_11 AC 4 ms
7,952 KB
testcase_12 AC 5 ms
8,640 KB
testcase_13 AC 5 ms
8,048 KB
testcase_14 AC 23 ms
11,232 KB
testcase_15 AC 26 ms
12,896 KB
testcase_16 AC 17 ms
9,908 KB
testcase_17 AC 32 ms
11,372 KB
testcase_18 AC 29 ms
11,248 KB
testcase_19 AC 31 ms
11,244 KB
testcase_20 AC 154 ms
15,600 KB
testcase_21 AC 100 ms
15,312 KB
testcase_22 AC 10 ms
12,024 KB
testcase_23 AC 204 ms
15,204 KB
testcase_24 AC 127 ms
15,348 KB
testcase_25 AC 138 ms
14,808 KB
testcase_26 AC 26 ms
8,264 KB
testcase_27 AC 8 ms
7,996 KB
testcase_28 AC 29 ms
10,012 KB
testcase_29 AC 264 ms
17,460 KB
testcase_30 AC 191 ms
21,484 KB
testcase_31 AC 317 ms
23,272 KB
testcase_32 AC 367 ms
23,372 KB
testcase_33 AC 320 ms
23,352 KB
testcase_34 AC 374 ms
23,280 KB
testcase_35 AC 275 ms
21,384 KB
testcase_36 AC 279 ms
21,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define debug(x) cerr << #x << " = " << (x) << " (L" << __LINE__ << ")" << " " << __FILE__ << endl;
typedef long long int ll;

int w,h;
int dp[1001][1001];
int vroad[1001][1001];
int hroad[1001][1001];

int vimos[1001][1001];
int himos[1001][1001];

int main(){
    int i,j,k,l;
    int x,y,d;
    int m,n;
    cin >>w>>h>>n;
    
    for (i=0;i<n;i++){
        int u1,u2;
        scanf("%d",&m);
        scanf("%d",&u1);
        for (j=1;j<=m;j++){
            scanf("%d",&u2);
            if (u1-w>=u2){ // down(flip->up)
                vimos[u2%w][u2/w]=max(u1/w-u2/w,vimos[u2%w][u2/w]);
            }else if (u1>u2){ // left
                himos[u2%w][u2/w]=max(u1-u2,himos[u2%w][u2/w]);
            }else if(u1+w>u2){ // right
                himos[u1%w][u1/w]=max(u2-u1,himos[u1%w][u1/w]);
            }else{ // up(flip->down)
                vimos[u1%w][u1/w]=max(u2/w-u1/w,vimos[u1%w][u1/w]);
            }
            u1=u2;
        }
    }
    for (x=0;x<w;x++){
        i=0;
        for (y=0;y<h;y++){
            if (i--<vimos[x][y] && vimos[x][y]) i=vimos[x][y]-1;
            vroad[x][y]=(0<=i);
        }
    }
    for (y=0;y<h;y++){
        i=0;
        for (x=0;x<w;x++){
            if (i--<himos[x][y] && himos[x][y]) i=himos[x][y]-1;
            hroad[x][y]=(0<=i);
        }
    }
    //for (y=0;y<h;y++){
    //    for (x=0;x<w;x++){
    //        printf("%d%d ",vroad[x][y],hroad[x][y]);
    //    }
    //    cout<<endl;
    //}
    
    queue<vector<int>> q;
    q.push(vector<int>{0,0,0});
    while (!q.empty()){
        vector<int> &e=q.front();
        x=e[0];y=e[1];d=e[2];q.pop();
        if (dp[x][y]) continue;
        if (x==w-1 && y==h-1){
            cout<<d<<endl;
            return 0;
        }
        //printf("%d %d %d\n",x,y,d);
        dp[x][y]=1;
        if (x!=0 && hroad[x-1][y]){q.push(vector<int>{x-1,y,d+1});}
        if (        hroad[x  ][y]){q.push(vector<int>{x+1,y,d+1});}
        if (y!=0 && vroad[x][y-1]){q.push(vector<int>{x,y-1,d+1});}
        if (        vroad[x][y  ]){q.push(vector<int>{x,y+1,d+1});}
    }
    cout<<"Odekakedekinai.."<<endl;
    return 0;
    
}
0