結果

問題 No.2376 障害物競プロ
ユーザー MichirakaraMichirakara
提出日時 2023-06-30 13:04:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,594 ms / 4,000 ms
コード長 1,527 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 83,200 KB
最終ジャッジ日時 2024-09-13 03:19:23
合計ジャッジ時間 112,768 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,480 KB
testcase_01 AC 42 ms
52,608 KB
testcase_02 AC 47 ms
57,728 KB
testcase_03 AC 42 ms
52,608 KB
testcase_04 AC 639 ms
78,188 KB
testcase_05 AC 906 ms
77,440 KB
testcase_06 AC 749 ms
78,208 KB
testcase_07 AC 2,497 ms
78,720 KB
testcase_08 AC 2,598 ms
78,848 KB
testcase_09 AC 2,524 ms
78,336 KB
testcase_10 AC 2,458 ms
78,592 KB
testcase_11 AC 2,574 ms
78,720 KB
testcase_12 AC 2,660 ms
78,592 KB
testcase_13 AC 2,457 ms
78,976 KB
testcase_14 AC 2,525 ms
78,592 KB
testcase_15 AC 2,200 ms
78,336 KB
testcase_16 AC 2,544 ms
78,592 KB
testcase_17 AC 2,677 ms
80,256 KB
testcase_18 AC 2,782 ms
78,592 KB
testcase_19 AC 3,256 ms
79,744 KB
testcase_20 AC 3,593 ms
83,200 KB
testcase_21 AC 3,594 ms
81,868 KB
testcase_22 AC 1,709 ms
78,208 KB
testcase_23 AC 1,726 ms
79,104 KB
testcase_24 AC 576 ms
76,160 KB
testcase_25 AC 394 ms
77,664 KB
testcase_26 AC 635 ms
76,288 KB
testcase_27 AC 645 ms
77,264 KB
testcase_28 AC 994 ms
77,772 KB
testcase_29 AC 396 ms
77,452 KB
testcase_30 AC 1,560 ms
78,208 KB
testcase_31 AC 754 ms
77,928 KB
testcase_32 AC 288 ms
77,720 KB
testcase_33 AC 692 ms
78,520 KB
testcase_34 AC 632 ms
77,948 KB
testcase_35 AC 203 ms
76,984 KB
testcase_36 AC 2,035 ms
78,276 KB
testcase_37 AC 1,266 ms
78,080 KB
testcase_38 AC 540 ms
77,960 KB
testcase_39 AC 2,271 ms
78,796 KB
testcase_40 AC 1,803 ms
78,380 KB
testcase_41 AC 442 ms
77,276 KB
testcase_42 AC 3,016 ms
81,744 KB
testcase_43 AC 3,068 ms
80,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt

N,M=map(int,input().split())
xy = []
for i in range(N):
    x1,y1,x2,y2=map(int,input().split())
    xy.append(((x1,y1),(x2,y2)))

#ワーシャルフロイド
dp = [[100000000000000000000] * (N + N) for _ in range(N + N)]
for i in range(N + N):
    for j in range(N + N):
        if i == j:
            dp[i][j] = 0
            continue
        xy1 = xy[i % N][i // N]
        xy2 = xy[j % N][j // N]
        flag = True
        for k in range(N):
            xy3 = xy[k][0]
            xy4 = xy[k][1]
            if xy3 in [xy1, xy2] or xy4 in [xy1, xy2]:
                continue

            s = (xy1[0] - xy2[0]) * (xy3[1] - xy1[1]) - (xy1[1] - xy2[1]) * (
                xy3[0] - xy1[0]
            )
            t = (xy1[0] - xy2[0]) * (xy4[1] - xy1[1]) - (xy1[1] - xy2[1]) * (
                xy4[0] - xy1[0]
            )
            s2 = (xy3[0] - xy4[0]) * (xy1[1] - xy3[1]) - (xy3[1] - xy4[1]) * (
                xy1[0] - xy3[0]
            )
            t2 = (xy3[0] - xy4[0]) * (xy2[1] - xy3[1]) - (xy3[1] - xy4[1]) * (
                xy2[0] - xy3[0]
            )
            if not(s * t >= 0 or s2 * t2 >= 0):
                flag = False
                break
        if flag:
            dp[i][j] = sqrt((xy1[0] - xy2[0]) ** 2 + (xy1[1] - xy2[1]) ** 2)
for k in range(N + N):
    for i in range(N + N):
        for j in range(N + N):
            dp[i][j] = min(dp[i][j], dp[i][k] + dp[k][j])

for _ in range(M):
	a,b,c,d=map(int,input().split())
	print(dp[a-1+(b-1)*N][c-1+(d-1)*N])
0