結果

問題 No.859 路線A、路線B、路線C
ユーザー stngstng
提出日時 2022-07-24 16:53:08
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 842 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 66,036 KB
最終ジャッジ日時 2024-07-06 11:37:33
合計ジャッジ時間 1,377 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,364 KB
testcase_01 AC 36 ms
53,804 KB
testcase_02 AC 34 ms
55,108 KB
testcase_03 RE -
testcase_04 AC 35 ms
54,736 KB
testcase_05 AC 34 ms
55,388 KB
testcase_06 AC 34 ms
54,168 KB
testcase_07 AC 33 ms
55,240 KB
testcase_08 AC 33 ms
54,476 KB
testcase_09 AC 33 ms
53,616 KB
testcase_10 AC 33 ms
54,044 KB
testcase_11 WA -
testcase_12 RE -
testcase_13 AC 39 ms
54,684 KB
testcase_14 AC 34 ms
53,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

xyz = [int(i) for i in input().split()]
srt = input().split()
end = input().split()

abc = [[10**10]*2 for i in range(3)]
idx = ord(srt[0])-ord("A")

d = deque()
abc[idx][0] = int(srt[1])-1
abc[idx][1] = xyz[idx] - int(srt[1])
d.append([idx,0])
d.append([idx,1])

while len(d):
    idx,pos = d.popleft()
    for i in range(3):
        if i == idx:
            continue
        if abc[i][pos] > abc[idx][pos]+1:
            abc[i][pos] = abc[idx][pos]+1
            d.append([i,pos])
        if abc[i][1-pos] > abc[idx][pos]+xyz[idx]:
            abc[i][1-pos] = abc[idx][pos]+xyz[idx]
            d.append([i,1-pos])

idxend = ord(end[0])-ord("A")
ans = min(int(end[1]) + abc[idxend][0] - 1,xyz[idxend] - int(end[1]) + abc[idxend][1])
if idx == idxend:
    ans = min(ans,abs(int(srt[0])-int(srt[1])))
print(ans)
0