結果

問題 No.2376 障害物競プロ
ユーザー KowerKoint2010KowerKoint2010
提出日時 2023-07-03 17:08:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,730 ms / 4,000 ms
コード長 1,548 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 80,408 KB
最終ジャッジ日時 2024-07-17 14:42:36
合計ジャッジ時間 85,809 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,608 KB
testcase_01 AC 38 ms
52,992 KB
testcase_02 AC 40 ms
52,992 KB
testcase_03 AC 39 ms
52,480 KB
testcase_04 AC 596 ms
78,012 KB
testcase_05 AC 801 ms
77,728 KB
testcase_06 AC 510 ms
78,120 KB
testcase_07 AC 1,677 ms
79,044 KB
testcase_08 AC 1,634 ms
78,672 KB
testcase_09 AC 1,712 ms
79,444 KB
testcase_10 AC 1,714 ms
79,960 KB
testcase_11 AC 1,730 ms
80,088 KB
testcase_12 AC 1,640 ms
80,328 KB
testcase_13 AC 1,543 ms
78,820 KB
testcase_14 AC 1,703 ms
78,664 KB
testcase_15 AC 1,576 ms
79,720 KB
testcase_16 AC 1,643 ms
79,112 KB
testcase_17 AC 1,716 ms
80,408 KB
testcase_18 AC 1,677 ms
80,180 KB
testcase_19 AC 1,375 ms
78,572 KB
testcase_20 AC 1,374 ms
78,892 KB
testcase_21 AC 1,372 ms
79,412 KB
testcase_22 AC 1,206 ms
78,680 KB
testcase_23 AC 1,082 ms
78,880 KB
testcase_24 AC 553 ms
76,800 KB
testcase_25 AC 372 ms
77,872 KB
testcase_26 AC 619 ms
76,416 KB
testcase_27 AC 599 ms
77,908 KB
testcase_28 AC 618 ms
78,928 KB
testcase_29 AC 387 ms
78,160 KB
testcase_30 AC 940 ms
78,656 KB
testcase_31 AC 538 ms
77,840 KB
testcase_32 AC 213 ms
77,712 KB
testcase_33 AC 428 ms
77,988 KB
testcase_34 AC 405 ms
77,568 KB
testcase_35 AC 207 ms
76,988 KB
testcase_36 AC 1,284 ms
78,524 KB
testcase_37 AC 906 ms
78,372 KB
testcase_38 AC 414 ms
77,808 KB
testcase_39 AC 1,393 ms
78,628 KB
testcase_40 AC 975 ms
78,968 KB
testcase_41 AC 384 ms
77,648 KB
testcase_42 AC 1,664 ms
79,024 KB
testcase_43 AC 1,657 ms
78,800 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:
            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