結果

問題 No.340 雪の足跡
ユーザー はまやんはまやんはまやんはまやん
提出日時 2017-02-26 15:34:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,020 bytes
コンパイル時間 1,652 ms
コンパイル使用メモリ 172,856 KB
実行使用メモリ 20,568 KB
最終ジャッジ日時 2024-06-11 16:42:05
合計ジャッジ時間 5,150 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
9,808 KB
testcase_01 AC 4 ms
9,680 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 3 ms
9,808 KB
testcase_04 AC 4 ms
9,808 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 3 ms
9,808 KB
testcase_07 AC 3 ms
9,684 KB
testcase_08 AC 3 ms
9,804 KB
testcase_09 AC 3 ms
7,764 KB
testcase_10 AC 3 ms
9,936 KB
testcase_11 AC 4 ms
9,936 KB
testcase_12 AC 3 ms
11,988 KB
testcase_13 AC 4 ms
10,064 KB
testcase_14 AC 12 ms
14,800 KB
testcase_15 AC 15 ms
14,124 KB
testcase_16 AC 10 ms
12,500 KB
testcase_17 AC 16 ms
13,952 KB
testcase_18 AC 14 ms
14,308 KB
testcase_19 AC 17 ms
16,588 KB
testcase_20 AC 116 ms
20,432 KB
testcase_21 AC 87 ms
10,544 KB
testcase_22 AC 11 ms
11,520 KB
testcase_23 WA -
testcase_24 AC 108 ms
20,436 KB
testcase_25 AC 120 ms
20,564 KB
testcase_26 AC 23 ms
12,628 KB
testcase_27 AC 8 ms
9,940 KB
testcase_28 AC 21 ms
12,752 KB
testcase_29 AC 121 ms
20,032 KB
testcase_30 AC 87 ms
20,016 KB
testcase_31 AC 131 ms
19,852 KB
testcase_32 AC 146 ms
20,564 KB
testcase_33 AC 116 ms
20,436 KB
testcase_34 AC 145 ms
20,564 KB
testcase_35 AC 134 ms
20,564 KB
testcase_36 AC 133 ms
20,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define rep(i,a,b) for(int i=a;i<b;i++)





int W, H, N;
int M[1010];
int B[1010][1010];
//-----------------------------------------------------------------
int vec[1010][1010];
int hor[1010][1010];
void makeEdge() {
	rep(i, 0, N) {
		rep(j, 0, M[i]) {
			int a = B[i][j];
			int b = B[i][j + 1];

			if (a > b) swap(a, b);

			int ya = a / W; int xa = a % W;
			int yb = b / W; int xb = b % W;

			if (ya == yb) { // x軸での移動
				hor[ya][xa]++;
				hor[ya][xb + 1]--;
			} else { // y軸での移動
				vec[xa][ya]++;
				vec[xa][yb + 1]--;
			}
		}
	}

	rep(y, 0, H) rep(x, 1, W) hor[y][x] += hor[y][x - 1];
	rep(x, 0, W) rep(y, 1, H) vec[x][y] += vec[x][y - 1];

	//rep(y, 0, H) rep(x, 0, W) printf("hor[y = %d][x = %d] = %d\n", y, x, hor[y][x]);
	//rep(x, 0, W) rep(y, 0, H) printf("vec[x = %d][y = %d] = %d\n", x, y, vec[x][y]);
}
//-----------------------------------------------------------------
bool done[1010][1010];
int dist[1010][1010];
int dx[4] = { 0, 1, 0, -1 };
int dy[4] = { -1, 0, 1, 0 };
int bfs() {
	queue<int> que;
	done[0][0] = true;
	dist[0][0] = 0;
	que.push(0);

	while (!que.empty()) {
		int y = que.front() / 1010;
		int x = que.front() % 1010;
		que.pop();

		if (y == H - 1 && x == W - 1) return dist[y][x];

		rep(i, 0, 4) {
			int xx = x + dx[i];
			int yy = y + dy[i];
			if (xx < 0 || W <= xx) continue;
			if (yy < 0 || H <= yy) continue;
			
			if (i % 2 == 1) {
				if (0 == hor[y][x] || 0 == hor[yy][xx]) continue;
			} else {
				if (0 == vec[x][y] || 0 == vec[xx][yy]) continue;
			}

			if (done[yy][xx]) continue;

			done[yy][xx] = 1;
			dist[yy][xx] = dist[y][x] + 1;
			que.push(yy * 1010 + xx);
		}
	}

	return -1;
}
//-----------------------------------------------------------------
int main() {
	cin >> W >> H >> N;
	rep(i, 0, N) {
		scanf("%d", &M[i]);
		rep(j, 0, M[i] + 1) scanf("%d", &B[i][j]);
	}

	makeEdge();
	int ans = bfs();
	if (0 <= ans)
		cout << ans << endl;
	else
		cout << "Odekakedekinai.." << endl;
}
0