結果

問題 No.126 2基のエレベータ
ユーザー 👑 KazunKazun
提出日時 2022-01-10 05:31:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 5,000 ms
コード長 647 bytes
コンパイル時間 425 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 72,304 KB
最終ジャッジ日時 2024-11-14 10:41:54
合計ジャッジ時間 2,814 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
70,320 KB
testcase_01 AC 49 ms
63,420 KB
testcase_02 AC 40 ms
57,468 KB
testcase_03 AC 44 ms
60,976 KB
testcase_04 AC 49 ms
64,236 KB
testcase_05 AC 40 ms
59,068 KB
testcase_06 AC 43 ms
57,968 KB
testcase_07 AC 49 ms
64,312 KB
testcase_08 AC 50 ms
63,512 KB
testcase_09 AC 51 ms
64,536 KB
testcase_10 AC 37 ms
53,196 KB
testcase_11 AC 41 ms
57,996 KB
testcase_12 AC 41 ms
57,848 KB
testcase_13 AC 41 ms
58,516 KB
testcase_14 AC 52 ms
65,888 KB
testcase_15 AC 60 ms
70,516 KB
testcase_16 AC 62 ms
71,888 KB
testcase_17 AC 59 ms
70,624 KB
testcase_18 AC 49 ms
63,760 KB
testcase_19 AC 37 ms
54,588 KB
testcase_20 AC 62 ms
70,684 KB
testcase_21 AC 49 ms
64,080 KB
testcase_22 AC 50 ms
65,144 KB
testcase_23 AC 45 ms
61,188 KB
testcase_24 AC 48 ms
63,840 KB
testcase_25 AC 50 ms
63,792 KB
testcase_26 AC 61 ms
70,440 KB
testcase_27 AC 59 ms
70,760 KB
testcase_28 AC 65 ms
72,304 KB
testcase_29 AC 60 ms
69,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush,heappop

def check(d,t):
    a,b,s=t
    if d<T.get((a,b,s),inf):
        T[(a,b,s)]=d
        heappush(Q,(d,(a,b,s)))

A,B,S=map(int,input().split())

inf=10**9
T={(A,B,S):0}
Q=[(0,(A,B,S))]

while True:
    d,(a,b,s)=heappop(Q)
    if s==0:
        break

    if s==1:
        check(d+abs(a-1)+abs(1-0),(0,b,0))

    if a==s:
        for k in range(101):
            check(d+abs(a-k),(k,b,k))
    elif b==s:
        for k in range(1,101):
            check(d+abs(b-k),(a,k,k))
    else:
        if abs(a-s)<=abs(b-s):
            check(d+abs(a-s),(s,b,s))
        else:
            check(d+abs(b-s),(a,s,s))

print(d)
0