結果

問題 No.20 砂漠のオアシス
ユーザー yuyyuyuyuyyuyu
提出日時 2015-08-01 13:50:23
言語 PyPy2
(7.3.15)
結果
WA  
実行時間 -
コード長 760 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 76,800 KB
実行使用メモリ 80,692 KB
最終ジャッジ日時 2024-04-21 06:40:40
合計ジャッジ時間 3,483 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
75,536 KB
testcase_01 AC 79 ms
75,536 KB
testcase_02 AC 81 ms
75,648 KB
testcase_03 AC 101 ms
78,368 KB
testcase_04 AC 114 ms
79,264 KB
testcase_05 AC 117 ms
78,592 KB
testcase_06 AC 111 ms
78,592 KB
testcase_07 WA -
testcase_08 AC 121 ms
78,720 KB
testcase_09 AC 199 ms
79,008 KB
testcase_10 AC 78 ms
75,512 KB
testcase_11 AC 78 ms
75,520 KB
testcase_12 AC 101 ms
78,464 KB
testcase_13 AC 106 ms
78,208 KB
testcase_14 AC 114 ms
78,848 KB
testcase_15 AC 109 ms
79,232 KB
testcase_16 WA -
testcase_17 AC 111 ms
79,280 KB
testcase_18 WA -
testcase_19 AC 117 ms
79,360 KB
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,V,ox,oy=map(int,raw_input().split())
ox-=1;oy-=1
L=[]
for _ in xrange(N):
    L.append(map(int,raw_input().split()))
dxdy=zip([-1,0,1,0],[0,-1,0,1])
que=[[0,0,1]]
visited=[]
maxV=[[-1]*N for _ in xrange(N)]
maxV[0][0]=V
while que:#bfs
    cx,cy,count=que.pop(0)
    v=maxV[cy][cx]
    for dx,dy in dxdy:
        nx,ny=cx+dx,cy+dy
        if not(0<=nx<N and 0<=ny<N):continue# in field?
        nv=v-L[ny][nx]
        if nv<=0:continue#death
        if nx==N-1 and ny==N-1 and nv>0:
            print 'YES'
            exit()
        if cx==ox and cy==oy and count>0:#oasis
            nv=nv*2
            count-=1
        if maxV[ny][nx]<nv and ([nx,ny,0] or [nx,ny,1] not in que):
            que.append([nx,ny,count])
            maxV[ny][nx]=nv
print 'NO'
0