結果
問題 | No.2731 Two Colors |
ユーザー | sasa8uyauya |
提出日時 | 2024-04-19 22:32:29 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,583 ms / 3,000 ms |
コード長 | 1,289 bytes |
コンパイル時間 | 228 ms |
コンパイル使用メモリ | 81,972 KB |
実行使用メモリ | 120,136 KB |
最終ジャッジ日時 | 2024-10-11 16:08:45 |
合計ジャッジ時間 | 19,393 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,583 ms
119,896 KB |
testcase_01 | AC | 1,562 ms
120,136 KB |
testcase_02 | AC | 1,572 ms
119,664 KB |
testcase_03 | AC | 136 ms
77,448 KB |
testcase_04 | AC | 178 ms
79,500 KB |
testcase_05 | AC | 172 ms
78,852 KB |
testcase_06 | AC | 265 ms
83,128 KB |
testcase_07 | AC | 236 ms
84,956 KB |
testcase_08 | AC | 152 ms
78,496 KB |
testcase_09 | AC | 482 ms
104,804 KB |
testcase_10 | AC | 140 ms
77,756 KB |
testcase_11 | AC | 871 ms
111,808 KB |
testcase_12 | AC | 462 ms
103,632 KB |
testcase_13 | AC | 740 ms
106,320 KB |
testcase_14 | AC | 322 ms
89,624 KB |
testcase_15 | AC | 160 ms
78,304 KB |
testcase_16 | AC | 405 ms
89,776 KB |
testcase_17 | AC | 437 ms
94,832 KB |
testcase_18 | AC | 201 ms
79,780 KB |
testcase_19 | AC | 432 ms
91,052 KB |
testcase_20 | AC | 321 ms
94,144 KB |
testcase_21 | AC | 222 ms
80,476 KB |
testcase_22 | AC | 628 ms
108,676 KB |
testcase_23 | AC | 286 ms
85,212 KB |
testcase_24 | AC | 209 ms
80,300 KB |
testcase_25 | AC | 122 ms
77,824 KB |
testcase_26 | AC | 458 ms
100,224 KB |
testcase_27 | AC | 562 ms
106,936 KB |
testcase_28 | AC | 518 ms
98,140 KB |
testcase_29 | AC | 260 ms
82,936 KB |
testcase_30 | AC | 313 ms
87,540 KB |
testcase_31 | AC | 298 ms
83,996 KB |
testcase_32 | AC | 854 ms
118,608 KB |
testcase_33 | AC | 39 ms
52,608 KB |
testcase_34 | AC | 38 ms
52,736 KB |
testcase_35 | AC | 38 ms
52,864 KB |
ソースコード
h,w=map(int,input().split()) a=[list(map(int,input().split())) for i in range(h)] v=[[0]*w for i in range(h)] v[0][0]=1 v[h-1][w-1]=2 u1=[[0]*w for i in range(h)] u2=[[0]*w for i in range(h)] u1[0][0]=1 u2[h-1][w-1]=1 from heapq import heappush,heappop q1=[] heappush(q1,(a[1][0],1,0)) heappush(q1,(a[0][1],0,1)) q2=[] heappush(q2,(a[h-2][w-1],h-2,w-1)) heappush(q2,(a[h-1][w-2],h-1,w-2)) for i in range(1,h*w+1): if i%2: while len(q1)>0 and v[q1[0][1]][q1[0][2]]!=0: heappop(q1) if len(q1)==0: print(i-1) exit() z,x,y=heappop(q1) v[x][y]=1 dx,dy=1,0 for _ in range(4): xx,yy=x+dx,y+dy dx,dy=-dy,dx if 0<=xx<h and 0<=yy<w: if v[xx][yy]==0 and u1[xx][yy]==0: heappush(q1,(a[xx][yy],xx,yy)) u1[xx][yy]=1 if v[xx][yy]==2: print(i) exit() else: while len(q2)>0 and v[q2[0][1]][q2[0][2]]!=0: heappop(q2) if len(q2)==0: print(i-1) exit() z,x,y=heappop(q2) v[x][y]=2 dx,dy=1,0 for _ in range(4): xx,yy=x+dx,y+dy dx,dy=-dy,dx if 0<=xx<h and 0<=yy<w: if v[xx][yy]==0 and u2[xx][yy]==0: heappush(q2,(a[xx][yy],xx,yy)) u2[xx][yy]=1 if v[xx][yy]==1: print(i) exit()