結果

問題 No.340 雪の足跡
ユーザー kmjpkmjp
提出日時 2016-01-29 22:38:27
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 816 ms / 1,000 ms
コード長 1,528 bytes
コンパイル時間 1,475 ms
コンパイル使用メモリ 169,316 KB
実行使用メモリ 249,472 KB
最終ジャッジ日時 2024-09-21 18:21:46
合計ジャッジ時間 11,088 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
50,560 KB
testcase_01 AC 37 ms
50,560 KB
testcase_02 AC 37 ms
50,432 KB
testcase_03 AC 37 ms
50,560 KB
testcase_04 AC 38 ms
50,176 KB
testcase_05 AC 38 ms
50,432 KB
testcase_06 AC 37 ms
50,432 KB
testcase_07 AC 37 ms
50,304 KB
testcase_08 AC 38 ms
50,432 KB
testcase_09 AC 37 ms
50,432 KB
testcase_10 AC 37 ms
50,304 KB
testcase_11 AC 37 ms
50,560 KB
testcase_12 AC 38 ms
50,816 KB
testcase_13 AC 40 ms
51,328 KB
testcase_14 AC 76 ms
65,152 KB
testcase_15 AC 81 ms
65,920 KB
testcase_16 AC 59 ms
57,472 KB
testcase_17 AC 88 ms
68,352 KB
testcase_18 AC 86 ms
68,224 KB
testcase_19 AC 87 ms
68,224 KB
testcase_20 AC 221 ms
81,408 KB
testcase_21 AC 115 ms
50,432 KB
testcase_22 AC 53 ms
61,824 KB
testcase_23 AC 347 ms
155,776 KB
testcase_24 AC 154 ms
62,976 KB
testcase_25 AC 273 ms
108,800 KB
testcase_26 AC 52 ms
52,864 KB
testcase_27 AC 31 ms
50,688 KB
testcase_28 AC 74 ms
59,648 KB
testcase_29 AC 470 ms
166,016 KB
testcase_30 AC 343 ms
138,496 KB
testcase_31 AC 729 ms
232,320 KB
testcase_32 AC 816 ms
249,472 KB
testcase_33 AC 811 ms
249,344 KB
testcase_34 AC 798 ms
249,412 KB
testcase_35 AC 763 ms
249,472 KB
testcase_36 AC 746 ms
249,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#undef _P
#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
//-------------------------------------------------------

int H,W,N;
set<int> L[1000000];
int R[1000001],B[1000001];
int dist[1000001];

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>W>>H>>N;
	FOR(i,N) {
		cin>>x;
		int pre=-1;
		FOR(j,x+1) {
			cin>>y;
			if(pre!=-1) {
				if(abs(y-pre)<W) R[min(y,pre)]=max(R[min(y,pre)],abs(y-pre));
				else B[min(y,pre)]=max(B[min(y,pre)],abs(y-pre)/W);
			}
			pre=y;
		}
	}
	
	FOR(y,H) FOR(x,W) {
		int id=y*W+x;
		if(x) R[id]=max(R[id],R[id-1]-1);
		if(y) B[id]=max(B[id],B[id-W]-1);
		if(R[id]) L[id].insert(id+1),L[id+1].insert(id);
		if(B[id]) L[id].insert(id+W),L[id+W].insert(id);
	}
	
	
	FOR(i,W*H) dist[i]=1<<30;
	dist[0]=0;
	queue<int> Q;
	Q.push(0);
	while(Q.size()) {
		int cur=Q.front();
		Q.pop();
		if(cur==W*H-1) return _P("%d\n",dist[cur]);
		FORR(r,L[cur]) {
			if(dist[r]>dist[cur]+1) {
				dist[r]=dist[cur]+1;
				Q.push(r);
			}
		}
	}
	_P("Odekakedekinai..\n");
	
	
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false);
	FOR(i,argc-1) s+=argv[i+1],s+='\n';
	FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	solve(); return 0;
}
0