結果

問題 No.340 雪の足跡
ユーザー keikei
提出日時 2018-10-26 16:57:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 3,906 bytes
コンパイル時間 1,932 ms
コンパイル使用メモリ 176,964 KB
実行使用メモリ 15,588 KB
最終ジャッジ日時 2023-08-12 07:33:44
合計ジャッジ時間 5,638 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
9,512 KB
testcase_01 AC 4 ms
9,508 KB
testcase_02 AC 6 ms
7,380 KB
testcase_03 AC 4 ms
9,500 KB
testcase_04 AC 4 ms
9,744 KB
testcase_05 AC 5 ms
7,440 KB
testcase_06 WA -
testcase_07 AC 6 ms
9,440 KB
testcase_08 AC 4 ms
9,552 KB
testcase_09 WA -
testcase_10 AC 4 ms
9,580 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 16 ms
13,612 KB
testcase_18 AC 13 ms
13,684 KB
testcase_19 AC 16 ms
13,600 KB
testcase_20 AC 113 ms
15,292 KB
testcase_21 WA -
testcase_22 AC 17 ms
15,456 KB
testcase_23 AC 127 ms
15,296 KB
testcase_24 WA -
testcase_25 AC 109 ms
15,304 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 150 ms
15,504 KB
testcase_33 AC 119 ms
15,296 KB
testcase_34 AC 146 ms
15,292 KB
testcase_35 AC 124 ms
15,588 KB
testcase_36 AC 121 ms
15,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
const int INF = 1e9;
const ll LINF = 1e18;
inline ll gcd(ll a, ll b) { return b ? gcd(b, a%b) : a; }
inline ll lcm(ll a, ll b) { return a / gcd(a, b)*b; }
template<class S,class T> ostream& operator << (ostream& out,const pair<S,T>& o){ out << "(" << o.first << "," << o.second << ")"; return out; }
template<class T> ostream& operator << (ostream& out,const vector<T> V){ for(int i = 0; i < V.size(); i++){ out << V[i]; if(i!=V.size()-1) out << " ";} return out; }
template<class T> ostream& operator << (ostream& out,const vector<vector<T> > Mat){ for(int i = 0; i < Mat.size(); i++) { if(i != 0) out << endl; out << Mat[i];} return out; }
template<class S,class T> ostream& operator << (ostream& out,const map<S,T> mp){ out << "{ "; for(auto it = mp.begin(); it != mp.end(); it++){ out << it->first << ":" << it->second; if(mp.size()-1 != distance(mp.begin(),it)) out << ", "; } out << " }"; return out; }

/*
 <url:https://yukicoder.me/problems/no/340>
 問題文============================================================
 =================================================================
 解説=============================================================
 ================================================================
 */

int dx[4] = {1,0,-1,0};
int dy[4] = {0,1,0,-1};
int coord2idx(const pii& coor,const int H,const int W){
    return coor.first*W + coor.second;
}
pii idx2coord(const int idx,const int H,const int W){
    return make_pair(idx/W, idx%W);
}

int yoko[1010][1010];
int tate[1010][1010];

int dist[1010][1010];
string solve(){
    string res;
    int W,H,N; cin >> W >> H >> N;
    for(int _ = 0; _ < N; _++){
        int M; cin >> M;
        vector<int> B(M+1);
        for(auto& in:B) cin >> in;
        for(int i = 0; i < M; i++){
            int S = B[i],T = B[i+1];
            
            pii sc = idx2coord(S, H, W),tc = idx2coord(T, H, W);
            if(sc.first == tc.first){ // 縦方向移動
                tate[min(sc.second,tc.second)][sc.first]++;
                tate[max(sc.second,tc.second)][sc.second]--;
            }
            if(sc.second == tc.second){ // 横方向移動
                yoko[sc.second][min(sc.first,tc.first)]++;
                yoko[sc.second][max(sc.first,tc.first)]--;
            }
        }
    }
    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 = 0; i <= H;i++){
            tate[i][j] += tate[i-1][j];
        }
    }
    
    fill(*dist,*dist+1010*1010,INF);
    dist[0][0] = 0;
    queue<pii> q; q.push(make_pair(0, 0));
    while(q.size()){
        int y,x;
        tie(y,x)= q.front(); q.pop();
        if(tate[y][x]>0){
            if(dist[y+1][x] > dist[y][x] + 1){
                dist[y+1][x] = dist[y][x] + 1;
                q.push(make_pair(y+1, x));
            }
        }
        if(yoko[y][x]>0){
            if(dist[y][x+1] > dist[y][x] + 1){
                dist[y][x+1] = dist[y][x] + 1;
                q.push(make_pair(y, x+1));
            }
        }
        if(y){
            if(tate[y-1][x]>0){
                if(dist[y-1][x] > dist[y][x] + 1){
                    dist[y-1][x] = dist[y][x] + 1;
                    q.push(make_pair(y-1, x));
                }
            }
        }
        if(x){
            if(yoko[y][x-1]>0){
                if(dist[y][x-1] > dist[y][x] + 1){
                    dist[y][x-1] = dist[y][x] + 1;
                    q.push(make_pair(y, x-1));
                }
            }
        }
    }
    res = to_string(dist[H-1][W-1]);
    if(dist[H-1][W-1] == INF) return "Odekakedekinai..";
    return res;
}
int main(void) {
    cin.tie(0); ios_base::sync_with_stdio(false);
    cout << solve() << endl;
    return 0;
}
0