結果
問題 | No.2731 Two Colors |
ユーザー | sasa8uyauya |
提出日時 | 2024-04-19 22:29:41 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,123 bytes |
コンパイル時間 | 2,007 ms |
コンパイル使用メモリ | 81,792 KB |
実行使用メモリ | 132,184 KB |
最終ジャッジ日時 | 2024-10-11 16:03:33 |
合計ジャッジ時間 | 31,103 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | TLE | - |
testcase_03 | AC | 153 ms
77,964 KB |
testcase_04 | AC | 237 ms
80,484 KB |
testcase_05 | AC | 215 ms
79,068 KB |
testcase_06 | AC | 375 ms
86,160 KB |
testcase_07 | AC | 322 ms
85,560 KB |
testcase_08 | AC | 203 ms
79,408 KB |
testcase_09 | AC | 650 ms
104,696 KB |
testcase_10 | AC | 178 ms
78,228 KB |
testcase_11 | AC | 1,210 ms
130,948 KB |
testcase_12 | AC | 633 ms
105,228 KB |
testcase_13 | AC | 1,055 ms
121,700 KB |
testcase_14 | AC | 450 ms
92,372 KB |
testcase_15 | AC | 219 ms
79,564 KB |
testcase_16 | AC | 603 ms
97,696 KB |
testcase_17 | AC | 593 ms
99,044 KB |
testcase_18 | AC | 281 ms
80,816 KB |
testcase_19 | AC | 601 ms
99,228 KB |
testcase_20 | AC | 429 ms
93,304 KB |
testcase_21 | AC | 299 ms
82,488 KB |
testcase_22 | AC | 882 ms
116,552 KB |
testcase_23 | AC | 395 ms
88,016 KB |
testcase_24 | AC | 301 ms
83,120 KB |
testcase_25 | AC | 148 ms
77,440 KB |
testcase_26 | AC | 651 ms
103,364 KB |
testcase_27 | AC | 752 ms
112,596 KB |
testcase_28 | AC | 719 ms
107,672 KB |
testcase_29 | AC | 372 ms
86,420 KB |
testcase_30 | AC | 445 ms
90,888 KB |
testcase_31 | AC | 441 ms
89,700 KB |
testcase_32 | AC | 1,178 ms
132,184 KB |
testcase_33 | AC | 42 ms
52,864 KB |
testcase_34 | AC | 41 ms
52,480 KB |
testcase_35 | AC | 42 ms
52,608 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 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: heappush(q1,(a[xx][yy],xx,yy)) 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: heappush(q2,(a[xx][yy],xx,yy)) if v[xx][yy]==1: print(i) exit()