結果

問題 No.643 Two Operations No.2
ユーザー titiatitia
提出日時 2024-06-25 01:53:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 692 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 13,824 KB
最終ジャッジ日時 2024-06-25 01:53:06
合計ジャッジ時間 1,418 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
13,440 KB
testcase_01 AC 40 ms
13,824 KB
testcase_02 AC 40 ms
13,696 KB
testcase_03 AC 47 ms
13,696 KB
testcase_04 AC 40 ms
13,568 KB
testcase_05 AC 39 ms
13,568 KB
testcase_06 AC 40 ms
13,696 KB
testcase_07 AC 39 ms
13,696 KB
testcase_08 AC 41 ms
13,440 KB
testcase_09 AC 40 ms
13,440 KB
testcase_10 AC 39 ms
13,568 KB
testcase_11 AC 40 ms
13,440 KB
testcase_12 AC 39 ms
13,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

X,Y=map(int,input().split())

DP=[[10**6]*600 for i in range(600)]

# DP[0][0] は(-300,-300)

Q=deque()

for i in range(600):
    DP[i][i]=0
    Q.append((i,i))

while Q:
    x,y=Q.popleft()

    x1=x-300
    y1=y-300

    if DP[y][x]>DP[x][y]+1:
        DP[y][x]=DP[x][y]+1
        Q.append((y,x))

    if (x1+y1)%2==0:
        x2=(x1+y1)//2
        y2=(x1-y1)//2
        #print(x1,y1,x2,y2)

        if 0<=x2+300<600 and 0<=y2+300<600 and DP[x2+300][y2+300]>DP[x][y]+1:
            DP[x2+300][y2+300]=DP[x][y]+1
            Q.append((x2+300,y2+300))

if DP[X-300][Y-300]>=10**5:
    print(-1)
else:
    print(DP[X-300][Y-300])
    
            
        




0