結果

問題 No.2376 障害物競プロ
ユーザー KowerKoint2010KowerKoint2010
提出日時 2023-07-03 12:51:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,783 ms / 4,000 ms
コード長 1,800 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 80,268 KB
最終ジャッジ日時 2024-07-17 10:40:17
合計ジャッジ時間 85,868 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,736 KB
testcase_01 AC 41 ms
52,736 KB
testcase_02 AC 42 ms
53,376 KB
testcase_03 AC 42 ms
52,352 KB
testcase_04 AC 605 ms
77,960 KB
testcase_05 AC 839 ms
77,424 KB
testcase_06 AC 529 ms
77,784 KB
testcase_07 AC 1,699 ms
78,648 KB
testcase_08 AC 1,680 ms
78,684 KB
testcase_09 AC 1,752 ms
79,444 KB
testcase_10 AC 1,742 ms
79,360 KB
testcase_11 AC 1,741 ms
79,448 KB
testcase_12 AC 1,745 ms
80,140 KB
testcase_13 AC 1,539 ms
78,848 KB
testcase_14 AC 1,783 ms
78,928 KB
testcase_15 AC 1,590 ms
79,420 KB
testcase_16 AC 1,711 ms
78,736 KB
testcase_17 AC 1,704 ms
79,712 KB
testcase_18 AC 1,747 ms
80,268 KB
testcase_19 AC 1,523 ms
78,944 KB
testcase_20 AC 1,641 ms
78,836 KB
testcase_21 AC 1,594 ms
78,972 KB
testcase_22 AC 1,182 ms
78,612 KB
testcase_23 AC 1,099 ms
78,172 KB
testcase_24 AC 555 ms
76,416 KB
testcase_25 AC 376 ms
78,088 KB
testcase_26 AC 624 ms
76,160 KB
testcase_27 AC 614 ms
77,700 KB
testcase_28 AC 635 ms
78,916 KB
testcase_29 AC 394 ms
78,332 KB
testcase_30 AC 961 ms
78,768 KB
testcase_31 AC 551 ms
78,160 KB
testcase_32 AC 222 ms
77,656 KB
testcase_33 AC 442 ms
77,740 KB
testcase_34 AC 419 ms
77,828 KB
testcase_35 AC 211 ms
77,068 KB
testcase_36 AC 1,313 ms
78,708 KB
testcase_37 AC 931 ms
78,100 KB
testcase_38 AC 443 ms
77,976 KB
testcase_39 AC 1,432 ms
78,756 KB
testcase_40 AC 963 ms
78,664 KB
testcase_41 AC 387 ms
77,736 KB
testcase_42 AC 1,708 ms
78,672 KB
testcase_43 AC 1,699 ms
78,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    n, m = map(int, input().split())
    xy = [1+1j] * (n*2)
    for i in range(n):
        x0, y0, x1, y1 = map(int, input().split())
        xy[i*2] = x0 + y0*1j
        xy[i*2+1] = x1 + y1*1j

    def segment_intersect(p1, p2, q1, q2):
        p1s = ((q2-q1).conjugate()*(p1-q1)).imag
        p2s = ((q2-q1).conjugate()*(p2-q1)).imag
        q1s = ((p2-p1).conjugate()*(q1-p1)).imag
        q2s = ((p2-p1).conjugate()*(q2-p1)).imag
        if q1s == 0 and q2s == 0:
            if ((q1-p1).conjugate()*(q2-p1)).real <= 0:
                return True
            if ((q1-p2).conjugate()*(q2-p2)).real <= 0:
                return True
            if ((p1-q1).conjugate()*(p2-q1)).real <= 0:
                return True
            return False
        if (((q1s > 0) - (q1s < 0)) == ((q2s > 0) - (q2s < 0))):
            return False
        if (((p1s > 0) - (p1s < 0)) == ((p2s > 0) - (p2s < 0))):
            return False
        return True

    dist = [[1e9] * (n*2) for _ in range(n*2)]
    for i in range(n*2):
        for j in range(n*2):
            if i == j:
                dist[i][j] = 0
                continue
            if ((i>>1) == (j>>1)):
                continue
            ok = True
            for k in range(n):
                if(k == (i>>1) or k == (j>>1)):
                    continue
                ok &= not(segment_intersect(xy[i], xy[j], xy[k*2], xy[k*2+1]))
            if ok:
                dist[i][j] = abs(xy[i]-xy[j])
    for k in range(n*2):
        for i in range(n*2):
            for j in range(n*2):
                dist[i][j] = min(dist[i][j], dist[i][k]+dist[k][j])
    for _ in range(m):
        a, b, c, d = map(int, input().split())
        a -= 1
        b -= 1
        c -= 1
        d -= 1
        print(dist[a*2+b][c*2+d])

main()
0