結果

問題 No.340 雪の足跡
ユーザー airisairis
提出日時 2016-01-30 16:51:41
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 244 ms / 1,000 ms
コード長 3,069 bytes
コンパイル時間 768 ms
コンパイル使用メモリ 89,848 KB
実行使用メモリ 38,864 KB
最終ジャッジ日時 2024-09-21 19:16:10
合計ジャッジ時間 5,010 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
10,108 KB
testcase_01 AC 5 ms
10,752 KB
testcase_02 AC 4 ms
8,804 KB
testcase_03 AC 5 ms
11,068 KB
testcase_04 AC 4 ms
9,852 KB
testcase_05 AC 3 ms
7,952 KB
testcase_06 AC 4 ms
10,160 KB
testcase_07 AC 5 ms
9,552 KB
testcase_08 AC 4 ms
9,840 KB
testcase_09 AC 4 ms
8,876 KB
testcase_10 AC 4 ms
10,204 KB
testcase_11 AC 5 ms
11,980 KB
testcase_12 AC 5 ms
11,940 KB
testcase_13 AC 5 ms
12,456 KB
testcase_14 AC 17 ms
18,872 KB
testcase_15 AC 20 ms
19,796 KB
testcase_16 AC 15 ms
14,928 KB
testcase_17 AC 24 ms
20,308 KB
testcase_18 AC 20 ms
18,612 KB
testcase_19 AC 24 ms
18,904 KB
testcase_20 AC 167 ms
38,860 KB
testcase_21 AC 99 ms
8,964 KB
testcase_22 AC 39 ms
38,828 KB
testcase_23 AC 167 ms
38,864 KB
testcase_24 AC 151 ms
38,856 KB
testcase_25 AC 153 ms
38,856 KB
testcase_26 AC 28 ms
17,052 KB
testcase_27 AC 9 ms
10,532 KB
testcase_28 AC 26 ms
17,832 KB
testcase_29 AC 187 ms
37,076 KB
testcase_30 AC 131 ms
23,936 KB
testcase_31 AC 207 ms
36,352 KB
testcase_32 AC 236 ms
38,784 KB
testcase_33 AC 198 ms
38,784 KB
testcase_34 AC 244 ms
38,784 KB
testcase_35 AC 206 ms
38,784 KB
testcase_36 AC 209 ms
38,784 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:115:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
  115 |         scanf("%d %d %d\n", &W, &H, &N);
      |         ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
main.cpp:117:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
  117 |                 scanf("%d", &M);
      |                 ~~~~~^~~~~~~~~~
main.cpp:119:34: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
  119 |                 rep(j, M+1) scanf("%d", &B[j]);
      |                             ~~~~~^~~~~~~~~~~~~

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <string>
#include <vector>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <numeric>
#include <bitset>
#include <complex>
#define rep(x, to) for (int x = 0; x < (to); x++)
#define REP(x, a, to) for (int x = (a); x < (to); x++)
#define foreach(itr, x) for (typeof((x).begin()) itr = (x).begin(); itr != (x).end(); itr++)
#define EPS (1e-14)

using namespace std;

typedef long long ll;
typedef pair<int, int> PII;
typedef pair<ll, ll> PLL;
typedef complex<double> Complex;
typedef vector< vector<int> > Mat;

const int INF = 1e+9 + 7;

int W, H, N, M;

int imos_v[2005][2005];
int imos_h[2005][2005];

queue<PII> Q;
int dist[1005][1005];

int di[] = {1,  -1};

void update(int y, int x, int ny, int nx, int imos[2005][2005]) {
	if (ny < 0 || ny >= H) return;
	if (nx < 0 || nx >= W) return;
	if (imos[2*y][2*x] <= 0 || imos[2*ny][2*nx] <= 0) return;
	if (y == ny && imos[2*y][2*min(x,nx)+1] <= 0) return;
	if (x == nx && imos[2*min(y,ny)+1][2*x] <= 0) return;
	if (dist[y][x] + 1 >= dist[ny][nx]) return;
	dist[ny][nx] = dist[y][x] + 1;
	if (imos[2*y][2*x] <= 0 || imos[2*ny][2*nx] <= 0) return;
	Q.push(PII(ny, nx));
}

void bfs() {
	rep(i, 1005) rep(j, 1005) {
		dist[i][j] = INF;
	}
	dist[0][0] = 0;
	Q.push(PII(0, 0));
	while (!Q.empty()) {
		PII cur = Q.front(); Q.pop();
		int y = cur.first;
		int x = cur.second;
		for (int i = 0, ny = 0, nx = 0; i < 2; i++) {
			ny = y + di[i];
			nx = x;
			update(y, x, ny, nx, imos_v);

			ny = y;
			nx = x + di[i];
			update(y, x, ny, nx, imos_h);
		}
	}
}

void solve() {
	for (int i = 0; i <= 2*H; i++) {
		for (int j = 0; j <= 2*W; j++) {
			imos_h[i][j] += j-1>=0 ? imos_h[i][j-1] : 0;
			imos_v[i][j] += i-1>=0 ? imos_v[i-1][j] : 0;
		}
	}
#if 0
	rep(i, 2*H + 1) rep(j, 2*W + 1) {
		printf("%3d%c", imos_v[i][j], j == 2*W ? '\n' : ' ');
	}
	printf("-----\n");
	rep(i, 2*H + 1) rep(j, 2*W + 1) {
		printf("%3d%c", imos_h[i][j], j == 2*W ? '\n' : ' ');
	}
	printf("-----\n");
#endif
	bfs();

#if 0
	rep(i, H) rep(j, W) {
		printf("%3d%c", dist[i][j], j == W-1 ? '\n' : ' ');
	}
#endif

	if (dist[H-1][W-1] >= INF) {
		cout << "Odekakedekinai.." << endl;
	} else {
		cout << dist[H-1][W-1] << endl;
	}

}

PII toYX(int p) {
	int y = p / W;
	int x = p % W;
	return PII(y, x);
}

int main() {
	scanf("%d %d %d\n", &W, &H, &N);
	rep(i, N) {
		scanf("%d", &M);
		vector<int> B(M+1);
		rep(j, M+1) scanf("%d", &B[j]);
		rep(j, M) {
			PII s = toYX(B[j]);
			PII e = toYX(B[j+1]);
			
			int sy = s.first * 2;
			int sx = s.second * 2;
			
			int ey = e.first * 2;
			int ex = e.second * 2;

			// printf("(%d,%d)->(%d,%d)\n", sx, sy, ex, ey);

			if (sx == ex) {
				// vertical
				int py = min(sy, ey);
				int qy = max(sy, ey);
				imos_v[py][sx] += 1;
				imos_v[qy+1][sx] -= 1;
			} else {
				// horizontal
				int px = min(sx, ex);
				int qx = max(sx, ex);
				imos_h[sy][px] += 1;
				imos_h[sy][qx+1] -= 1;
			}
		}
		// printf("=====\n");
	}
	solve();
	return 0;
}


0