結果
問題 | No.859 路線A、路線B、路線C |
ユーザー | nebukuro09 |
提出日時 | 2019-08-10 03:31:22 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 30 ms / 1,000 ms |
コード長 | 657 bytes |
コンパイル時間 | 182 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-07-19 16:55:22 |
合計ジャッジ時間 | 1,423 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
10,752 KB |
testcase_01 | AC | 30 ms
10,496 KB |
testcase_02 | AC | 30 ms
10,624 KB |
testcase_03 | AC | 28 ms
10,624 KB |
testcase_04 | AC | 27 ms
10,752 KB |
testcase_05 | AC | 26 ms
10,624 KB |
testcase_06 | AC | 25 ms
10,624 KB |
testcase_07 | AC | 25 ms
10,624 KB |
testcase_08 | AC | 25 ms
10,624 KB |
testcase_09 | AC | 26 ms
10,624 KB |
testcase_10 | AC | 25 ms
10,624 KB |
testcase_11 | AC | 26 ms
10,496 KB |
testcase_12 | AC | 26 ms
10,752 KB |
testcase_13 | AC | 26 ms
10,624 KB |
testcase_14 | AC | 25 ms
10,624 KB |
ソースコード
from itertools import permutations x, y, z = map(int, input().split()) s0, t0 = input().split() s1, t1 = input().split() t0 = int(t0) - 1 t1 = int(t1) - 1 D = {} D['A'] = x - 1 D['B'] = y - 1 D['C'] = z - 1 A = [('A', 0), ('A', x-1), ('B', 0), ('B', y-1), ('C', 0), ('C', z-1), (s0, t0), (s1, t1)] A = list(set(A)) B = {} for a in A: B[a] = {} for b in A: if a[0] == b[0]: B[a][b] = abs(a[1] - b[1]) else: B[a][b] = min(a[1] + b[1] + 1 , D[a[0]] - a[1] + D[b[0]] - b[1] + 1) for a in A: for b in A: for c in A: B[b][c] = min(B[b][c], B[b][a] + B[a][c]) print(B[s0, t0][s1, t1])