結果

問題 No.1572 XI
ユーザー tailstails
提出日時 2021-06-28 11:04:01
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 1,336 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 32,624 KB
実行使用メモリ 23,092 KB
最終ジャッジ日時 2024-06-25 12:05:07
合計ジャッジ時間 3,340 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 16 ms
8,020 KB
testcase_05 AC 68 ms
14,220 KB
testcase_06 AC 51 ms
11,856 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 4 ms
6,948 KB
testcase_09 AC 30 ms
10,428 KB
testcase_10 AC 17 ms
8,648 KB
testcase_11 AC 5 ms
6,940 KB
testcase_12 AC 24 ms
9,164 KB
testcase_13 AC 8 ms
6,940 KB
testcase_14 AC 19 ms
6,944 KB
testcase_15 AC 3 ms
6,948 KB
testcase_16 AC 15 ms
6,944 KB
testcase_17 AC 4 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 12 ms
6,940 KB
testcase_20 AC 10 ms
6,940 KB
testcase_21 AC 55 ms
12,468 KB
testcase_22 AC 67 ms
14,680 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 1 ms
6,944 KB
testcase_25 AC 1 ms
6,944 KB
testcase_26 AC 1 ms
6,944 KB
testcase_27 AC 1 ms
6,940 KB
testcase_28 AC 1 ms
6,944 KB
testcase_29 AC 1 ms
6,944 KB
testcase_30 AC 1 ms
6,940 KB
testcase_31 AC 1 ms
6,940 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 1 ms
6,944 KB
testcase_34 AC 10 ms
6,944 KB
testcase_35 AC 4 ms
6,944 KB
testcase_36 AC 33 ms
9,408 KB
testcase_37 AC 125 ms
22,436 KB
testcase_38 AC 77 ms
14,440 KB
testcase_39 AC 55 ms
12,908 KB
testcase_40 AC 18 ms
6,944 KB
testcase_41 AC 74 ms
15,696 KB
testcase_42 AC 126 ms
23,092 KB
testcase_43 AC 50 ms
12,264 KB
testcase_44 AC 15 ms
6,940 KB
testcase_45 AC 93 ms
17,700 KB
testcase_46 AC 95 ms
17,532 KB
testcase_47 AC 2 ms
6,944 KB
testcase_48 AC 75 ms
14,264 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c:12:1: warning: return type defaults to 'int' [-Wimplicit-int]
   12 | main(){
      | ^~~~
main.c: In function 'main':
main.c:13:9: warning: implicit declaration of function 'read'; did you mean 'rd'? [-Wimplicit-function-declaration]
   13 |         read(0,rbuf,sizeof rbuf);
      |         ^~~~
      |         rd
main.c:34:33: warning: implicit declaration of function 'write' [-Wimplicit-function-declaration]
   34 |                                 write(1,wp,wbuf+sizeof wbuf-wp);
      |                                 ^~~~~
main.c:35:33: warning: implicit declaration of function '_exit'; did you mean '_Exit'? [-Wimplicit-function-declaration]
   35 |                                 _exit(0);
      |                                 ^~~~~
      |                                 _Exit

ソースコード

diff #

#pragma GCC optimize("Ofast")
#pragma GCC target("avx2")

char rbuf[1<<20];

#define rd(v) int v=0;{int _c;while(_c=*rp++-48,_c>=0)v=v*10+_c;}
#define wt(v) {long _z=v;do*--wp=_z%10+48;while(_z/=10);}

char v[1001][1001][6];
int q[6000000];

main(){
	read(0,rbuf,sizeof rbuf);
	char*rp=rbuf;
	rd(h); rd(w);
	rd(sy); rd(sx);
	rd(gy); rd(gx);

	++w;

	long r=0;
	long qr=0,qw=0;
	q[qw++]=0|sx<<3|sy<<13;
	while(qr<qw){
		long qn=qw;
		while(qr<qn){
			long d=q[qr]&7;
			long x=q[qr]>>3&1023;
			long y=q[qr]>>13;
			++qr;
			if(y==gy&&x==gx&&d==0){
				char wbuf[64],*wp=wbuf+sizeof wbuf;
				wt(r);
				write(1,wp,wbuf+sizeof wbuf-wp);
				_exit(0);
			}
			// y+1
			if(rp[(y-0)*w+(x-1)]=='.'){
				long d2="\1\5\2\0\4\3"[d];
				if(!v[y+1][x][d2]){
					v[y+1][x][d2]=1;
					q[qw++]=d2|x<<3|y+1<<13;
				}
			}
			// x+1
			if(rp[(y-1)*w+(x-0)]=='.'){
				long d2="\2\1\5\3\0\4"[d];
				if(!v[y][x+1][d2]){
					v[y][x+1][d2]=1;
					q[qw++]=d2|x+1<<3|y<<13;
				}
			}
			// y-1
			if(rp[(y-2)*w+(x-1)]=='.'){
				long d2="\3\0\2\5\4\1"[d];
				if(!v[y-1][x][d2]){
					v[y-1][x][d2]=1;
					q[qw++]=d2|x<<3|y-1<<13;
				}
			}
			// x-1
			if(rp[(y-1)*w+(x-2)]=='.'){
				long d2="\4\1\0\3\5\2"[d];
				if(!v[y][x-1][d2]){
					v[y][x-1][d2]=1;
					q[qw++]=d2|x-1<<3|y<<13;
				}
			}
		}
		++r;
	}
	write(1,"-1",2);
	_exit(0);
}
0