結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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,156 KB
testcase_05 AC 66 ms
14,124 KB
testcase_06 AC 49 ms
11,804 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 29 ms
10,328 KB
testcase_10 AC 16 ms
6,940 KB
testcase_11 AC 5 ms
6,944 KB
testcase_12 AC 24 ms
10,692 KB
testcase_13 AC 7 ms
6,940 KB
testcase_14 AC 18 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 15 ms
6,940 KB
testcase_17 AC 3 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 11 ms
6,944 KB
testcase_20 AC 9 ms
6,940 KB
testcase_21 AC 53 ms
12,648 KB
testcase_22 AC 63 ms
14,828 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 1 ms
6,940 KB
testcase_25 AC 1 ms
6,940 KB
testcase_26 AC 1 ms
6,944 KB
testcase_27 AC 1 ms
6,940 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 1 ms
6,944 KB
testcase_30 AC 1 ms
6,940 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 1 ms
6,940 KB
testcase_33 AC 1 ms
6,940 KB
testcase_34 AC 10 ms
6,940 KB
testcase_35 AC 4 ms
6,940 KB
testcase_36 AC 32 ms
9,264 KB
testcase_37 AC 117 ms
21,920 KB
testcase_38 AC 72 ms
16,192 KB
testcase_39 AC 52 ms
13,176 KB
testcase_40 AC 17 ms
6,944 KB
testcase_41 AC 70 ms
16,376 KB
testcase_42 AC 121 ms
22,296 KB
testcase_43 AC 48 ms
12,584 KB
testcase_44 AC 14 ms
6,944 KB
testcase_45 AC 88 ms
17,900 KB
testcase_46 AC 88 ms
17,556 KB
testcase_47 AC 2 ms
6,944 KB
testcase_48 AC 71 ms
14,644 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=0x340251>>(d<<2)&7;
				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=0x403512>>(d<<2)&7;
				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=0x145203>>(d<<2)&7;
				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=0x253014>>(d<<2)&7;
				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