結果

問題 No.340 雪の足跡
ユーザー furafura
提出日時 2020-01-31 18:13:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 361 ms / 1,000 ms
コード長 1,260 bytes
コンパイル時間 1,966 ms
コンパイル使用メモリ 176,964 KB
実行使用メモリ 69,732 KB
最終ジャッジ日時 2024-09-17 06:55:10
合計ジャッジ時間 8,056 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 3 ms
6,944 KB
testcase_12 AC 3 ms
6,948 KB
testcase_13 AC 4 ms
6,944 KB
testcase_14 AC 21 ms
10,700 KB
testcase_15 AC 22 ms
10,960 KB
testcase_16 AC 14 ms
8,136 KB
testcase_17 AC 27 ms
14,668 KB
testcase_18 AC 23 ms
11,716 KB
testcase_19 AC 27 ms
13,776 KB
testcase_20 AC 159 ms
44,508 KB
testcase_21 AC 87 ms
6,940 KB
testcase_22 AC 23 ms
38,472 KB
testcase_23 AC 225 ms
69,644 KB
testcase_24 AC 126 ms
38,676 KB
testcase_25 AC 169 ms
52,064 KB
testcase_26 AC 25 ms
9,040 KB
testcase_27 AC 7 ms
6,940 KB
testcase_28 AC 26 ms
9,024 KB
testcase_29 AC 230 ms
44,944 KB
testcase_30 AC 155 ms
35,480 KB
testcase_31 AC 310 ms
64,400 KB
testcase_32 AC 361 ms
69,636 KB
testcase_33 AC 323 ms
69,580 KB
testcase_34 AC 359 ms
69,696 KB
testcase_35 AC 350 ms
69,732 KB
testcase_36 AC 353 ms
69,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i,n) for(int i=0;i<(n);i++)

using namespace std;
using graph=vector<vector<int>>;

vector<int> distance(const graph& G,int s){
	const int INF=INT_MAX;
	int n=G.size();
	vector<int> d(n,INF);
	d[s]=0;
	queue<int> Q; Q.emplace(s);
	while(!Q.empty()){
		int u=Q.front(); Q.pop();
		for(int v:G[u]) if(d[v]==INF) {
			d[v]=d[u]+1;
			Q.emplace(v);
		}
	}
	return d;
}

int main(){
	int h,w,n; scanf("%d%d%d",&w,&h,&n);

	static int rsum[1000][1000],csum[1000][1000];
	rep(i,n){
		int m; scanf("%d",&m);
		static int b[1001];
		rep(j,m+1) scanf("%d",&b[j]);

		rep(j,m){
			int y1=b[ j ]/w,x1=b[ j ]%w;
			int y2=b[j+1]/w,x2=b[j+1]%w;
			if(y1==y2){
				csum[y1][min(x1,x2)]++;
				csum[y1][max(x1,x2)]--;
			}
			else{
				rsum[min(y1,y2)][x1]++;
				rsum[max(y1,y2)][x1]--;
			}
		}
	}

	rep(i,h) rep(j,w-1) csum[i][j+1]+=csum[i][j];
	rep(j,w) rep(i,h-1) rsum[i+1][j]+=rsum[i][j];

	graph G(h*w);
	rep(i,h) rep(j,w) {
		if(rsum[i][j]>0){
			G[i*w+j].emplace_back((i+1)*w+j);
			G[(i+1)*w+j].emplace_back(i*w+j);
		}
		if(csum[i][j]>0){
			G[i*w+j].emplace_back(i*w+j+1);
			G[i*w+j+1].emplace_back(i*w+j);
		}
	}

	int ans=distance(G,0)[h*w-1];
	if(ans<h*w) printf("%d\n",ans);
	else puts("Odekakedekinai..");

	return 0;
}
0