結果

問題 No.340 雪の足跡
ユーザー TawaraTawara
提出日時 2016-01-11 00:22:44
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 181 ms / 1,000 ms
コード長 1,243 bytes
コンパイル時間 497 ms
コンパイル使用メモリ 54,576 KB
実行使用メモリ 14,864 KB
最終ジャッジ日時 2024-09-19 16:02:33
合計ジャッジ時間 4,287 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
7,112 KB
testcase_01 AC 2 ms
7,112 KB
testcase_02 AC 2 ms
6,980 KB
testcase_03 AC 3 ms
7,108 KB
testcase_04 AC 3 ms
6,984 KB
testcase_05 AC 3 ms
7,368 KB
testcase_06 AC 3 ms
7,112 KB
testcase_07 AC 2 ms
6,984 KB
testcase_08 AC 2 ms
6,988 KB
testcase_09 AC 2 ms
7,116 KB
testcase_10 AC 3 ms
7,116 KB
testcase_11 AC 4 ms
7,240 KB
testcase_12 AC 3 ms
7,244 KB
testcase_13 AC 4 ms
7,368 KB
testcase_14 AC 12 ms
13,624 KB
testcase_15 AC 13 ms
8,268 KB
testcase_16 AC 11 ms
7,756 KB
testcase_17 AC 17 ms
8,264 KB
testcase_18 AC 14 ms
10,232 KB
testcase_19 AC 17 ms
8,392 KB
testcase_20 AC 143 ms
14,664 KB
testcase_21 AC 98 ms
9,160 KB
testcase_22 AC 11 ms
14,636 KB
testcase_23 AC 151 ms
14,752 KB
testcase_24 AC 127 ms
14,792 KB
testcase_25 AC 134 ms
14,560 KB
testcase_26 AC 25 ms
11,416 KB
testcase_27 AC 7 ms
7,112 KB
testcase_28 AC 22 ms
9,952 KB
testcase_29 AC 151 ms
14,492 KB
testcase_30 AC 104 ms
12,872 KB
testcase_31 AC 159 ms
14,352 KB
testcase_32 AC 181 ms
14,652 KB
testcase_33 AC 144 ms
14,576 KB
testcase_34 AC 181 ms
14,864 KB
testcase_35 AC 158 ms
14,684 KB
testcase_36 AC 156 ms
14,840 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 1000
#define UH 1000
#define MAXD 1000001

int EX[UH][UW+2],EY[UW][UH+2],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,d;
	queue<T> Q;
	scanf("%d %d %d",&W,&H,&N);
	rep(j,H) rep(i,W){EX[j][i+1]=EY[i][j+1]=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;
			if (y == ny){EX[y][min(x,nx)+1]++; EX[y][max(x,nx)+1]--;}
			else {EY[x][min(y,ny)+1]++; EY[x][max(y,ny)+1]--;}
		}
	}
	rep(j,H){rep(i,W-1) EX[j][i+1]+=EX[j][i]; EX[j][0]=EX[j][W+1]=0;}
	rep(i,W){rep(j,H-1) EY[i][j+1]+=EY[i][j]; EY[i][0]=EY[i][H+1]=0;}

	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 (((x==nx && EY[x][max(y,ny)]>0)||(y==ny && EX[y][max(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