結果

問題 No.340 雪の足跡
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-14 18:16:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,936 bytes
コンパイル時間 819 ms
コンパイル使用メモリ 77,708 KB
実行使用メモリ 26,236 KB
最終ジャッジ日時 2024-11-24 10:16:18
合計ジャッジ時間 7,756 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
7,496 KB
testcase_01 AC 2 ms
7,496 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 3 ms
7,496 KB
testcase_04 AC 3 ms
7,624 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 3 ms
7,628 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
7,624 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 3 ms
7,496 KB
testcase_11 AC 4 ms
7,752 KB
testcase_12 AC 3 ms
7,624 KB
testcase_13 AC 4 ms
7,624 KB
testcase_14 AC 19 ms
13,908 KB
testcase_15 AC 24 ms
11,976 KB
testcase_16 AC 19 ms
9,800 KB
testcase_17 AC 30 ms
11,848 KB
testcase_18 AC 25 ms
14,024 KB
testcase_19 AC 30 ms
11,980 KB
testcase_20 AC 290 ms
26,148 KB
testcase_21 AC 180 ms
14,664 KB
testcase_22 AC 25 ms
23,128 KB
testcase_23 WA -
testcase_24 AC 287 ms
26,236 KB
testcase_25 AC 308 ms
25,872 KB
testcase_26 AC 47 ms
7,756 KB
testcase_27 AC 11 ms
7,620 KB
testcase_28 AC 41 ms
9,804 KB
testcase_29 AC 312 ms
21,248 KB
testcase_30 AC 212 ms
22,524 KB
testcase_31 AC 322 ms
24,872 KB
testcase_32 AC 378 ms
24,640 KB
testcase_33 AC 303 ms
24,652 KB
testcase_34 AC 377 ms
26,052 KB
testcase_35 AC 307 ms
25,592 KB
testcase_36 AC 309 ms
25,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <iostream>
#include <algorithm>
#include <queue>
#include <utility>
#include <vector>
#include <string>
using namespace std;


int dx[4] = { 0,1,0,-1 };
int dy[4] = { 1,0,-1,0 };
int hori[2000][2000], vert[2000][2000];
int dist[1010101];

int main()
{
    int h, w, n;
    cin >> h >> w >> n;
    for (int i = 0; i < n; i++) {
        int m; cin >> m;
        int b; cin >> b;
        int x, y, xx, yy;
        x = b / w; y = b % w;
        while (m--) {
            cin >> b;
            xx = b / w; yy = b % w;
            if (x == xx) {
                hori[x][min(y, yy)]++;
                hori[x][max(y, yy) + 1]--;
            }
            else {
                vert[min(x, xx)][y]++;
                vert[max(x, xx) + 1][y]--;
            }
            x = xx; y = yy;
        }
    }
    for (int i = 0; i < h; i++) for (int j = 0; j < w; j++)hori[i][j + 1] += hori[i][j];
    for (int i = 0; i < w; i++) for (int j = 0; j < h; j++)vert[j + 1][i] += vert[j][i];
   
    for (int i = 0; i < w * h; i++)dist[i] = -1;
    dist[0] = 0;
    queue<int> que;
    que.push(0);
   
    auto toID = [&](int a, int b) {
        return a * w + b;
    };
    auto push = [&](int a, int b, int d) {
        int id = toID(a, b);
        if (dist[id] == -1) {
            dist[id] = d;
            que.push(id);
        }
    };
   
    while (!que.empty())
    {
        int s = que.front(); que.pop();
        int x, y;
        x = s / w; y = s % w;
        
        if (x && vert[x][y] && vert[x - 1][y])push(x - 1, y, dist[s] + 1);
        if (y && hori[x][y] && hori[x][y - 1])push(x, y - 1, dist[s] + 1);
        if (x + 1 < h && vert[x][y] && vert[x + 1][y])push(x + 1, y, dist[s] + 1);
        if (y + 1 < w && hori[x][y] && hori[x][y + 1])push(x, y + 1, dist[s] + 1);
    }
   
    if (dist[h * w - 1] == -1) cout << "Odekakedekinai.." << endl;
    else cout << dist[h * w - 1] << endl;
    return 0;
}

0