結果

問題 No.340 雪の足跡
ユーザー TawaraTawara
提出日時 2016-01-10 17:03:31
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 757 ms / 1,000 ms
コード長 1,195 bytes
コンパイル時間 463 ms
コンパイル使用メモリ 54,060 KB
実行使用メモリ 66,380 KB
最終ジャッジ日時 2024-09-19 15:56:45
合計ジャッジ時間 8,821 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
7,240 KB
testcase_01 AC 2 ms
7,240 KB
testcase_02 AC 3 ms
6,980 KB
testcase_03 AC 3 ms
7,112 KB
testcase_04 AC 2 ms
6,984 KB
testcase_05 AC 3 ms
7,116 KB
testcase_06 AC 2 ms
7,112 KB
testcase_07 AC 2 ms
6,984 KB
testcase_08 AC 3 ms
7,240 KB
testcase_09 AC 2 ms
7,112 KB
testcase_10 AC 2 ms
9,032 KB
testcase_11 AC 3 ms
9,200 KB
testcase_12 AC 3 ms
9,420 KB
testcase_13 AC 4 ms
11,520 KB
testcase_14 AC 16 ms
21,888 KB
testcase_15 AC 20 ms
23,868 KB
testcase_16 AC 15 ms
17,804 KB
testcase_17 AC 26 ms
24,088 KB
testcase_18 AC 21 ms
24,100 KB
testcase_19 AC 25 ms
25,804 KB
testcase_20 AC 733 ms
64,696 KB
testcase_21 AC 685 ms
25,544 KB
testcase_22 AC 19 ms
65,012 KB
testcase_23 AC 457 ms
65,228 KB
testcase_24 AC 712 ms
65,084 KB
testcase_25 AC 442 ms
66,380 KB
testcase_26 AC 33 ms
17,704 KB
testcase_27 AC 8 ms
9,160 KB
testcase_28 AC 30 ms
19,752 KB
testcase_29 AC 297 ms
56,864 KB
testcase_30 AC 195 ms
44,228 KB
testcase_31 AC 319 ms
62,904 KB
testcase_32 AC 390 ms
64,744 KB
testcase_33 AC 310 ms
64,976 KB
testcase_34 AC 407 ms
64,984 KB
testcase_35 AC 757 ms
64,664 KB
testcase_36 AC 750 ms
65,024 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:22:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   22 |         scanf("%d %d %d",&W,&H,&N);
      |         ~~~~~^~~~~~~~~~~~~~~~~~~~~
main.cpp:25:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   25 |                 scanf("%d",&M);
      |                 ~~~~~^~~~~~~~~
main.cpp:26:33: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   26 |                 rep(j,M+1) scanf("%d",B+j);
      |                            ~~~~~^~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
#include <tuple>
#include <queue>
#include <algorithm>

using namespace std;

typedef tuple <int, int, int> T;

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

#define UW 5000
#define UH 5000
#define MAXD 25000001

int EX[UH][UW],EY[UW][UH],B[UW+1];
int D[UH][UW],dx[]={1,0,-1,0},dy[]={0,1,0,-1};
int main(){
	int W,H,N,M,G,x,y,nx,ny,lx,ly,ux,uy,d;
	queue<T> Q; 
	scanf("%d %d %d",&W,&H,&N);
	rep(j,H) rep(i,W){EX[j][i] = EY[i][j] = 0; D[j][i] = MAXD;}
	rep(i,N){
		scanf("%d",&M);
		rep(j,M+1) scanf("%d",B+j);
		rep(j,M){
			x=B[j]%W; nx=B[j+1]%W; y=B[j]/W; ny=B[j+1]/W;
			lx = min(x,nx); ux = max(x,nx);
			ly = min(y,ny); uy = max(y,ny);
			range(k,lx,ux) EX[ly][k]++;
			range(k,ly,uy) EY[lx][k]++;
		}
	}
	D[0][0] = 0; Q.push(T(0,0,0)); G = W+H-2; 
	while (!Q.empty()){
		tie(x,y,d) = Q.front(); Q.pop();
		if (x+y == G){printf("%d\n",d);return 0;}
		rep(i,4){
			nx = x + dx[i]; ny = y + dy[i];
			if (nx < 0 || nx >= W || ny < 0 || ny >= H) continue;
			if (((x==nx && EY[x][min(y,ny)]>0)||(y==ny && EX[y][min(x,nx)]>0)) && d+1<D[ny][nx]){
				D[ny][nx] = d+1; Q.push(T(nx,ny,d+1));
			}
		}
	}
	puts("Odekakedekinai..");
	return 0;
}
0