結果

問題 No.2909 Imaginary Summer
ユーザー 👑 rin204rin204
提出日時 2024-10-02 22:42:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,380 ms / 6,000 ms
コード長 478 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 97,096 KB
最終ジャッジ日時 2024-10-02 22:43:44
合計ジャッジ時間 78,804 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,060 ms
60,864 KB
testcase_01 AC 1,078 ms
60,868 KB
testcase_02 AC 1,082 ms
60,872 KB
testcase_03 AC 1,076 ms
60,616 KB
testcase_04 AC 1,097 ms
61,248 KB
testcase_05 AC 1,084 ms
61,380 KB
testcase_06 AC 1,049 ms
61,000 KB
testcase_07 AC 1,071 ms
60,740 KB
testcase_08 AC 1,089 ms
61,000 KB
testcase_09 AC 1,393 ms
69,500 KB
testcase_10 AC 1,284 ms
65,476 KB
testcase_11 AC 1,292 ms
66,880 KB
testcase_12 AC 1,385 ms
70,724 KB
testcase_13 AC 1,290 ms
66,624 KB
testcase_14 AC 1,246 ms
64,968 KB
testcase_15 AC 1,917 ms
83,068 KB
testcase_16 AC 2,050 ms
86,540 KB
testcase_17 AC 1,959 ms
83,940 KB
testcase_18 AC 2,003 ms
85,264 KB
testcase_19 AC 1,841 ms
81,784 KB
testcase_20 AC 2,354 ms
94,856 KB
testcase_21 AC 2,315 ms
94,148 KB
testcase_22 AC 2,144 ms
89,988 KB
testcase_23 AC 2,256 ms
92,072 KB
testcase_24 AC 2,319 ms
95,452 KB
testcase_25 AC 2,218 ms
91,140 KB
testcase_26 AC 2,160 ms
90,976 KB
testcase_27 AC 2,292 ms
93,980 KB
testcase_28 AC 2,334 ms
96,072 KB
testcase_29 AC 2,373 ms
96,616 KB
testcase_30 AC 2,380 ms
96,204 KB
testcase_31 AC 2,369 ms
96,368 KB
testcase_32 AC 2,347 ms
95,732 KB
testcase_33 AC 2,370 ms
97,096 KB
testcase_34 AC 2,369 ms
96,480 KB
testcase_35 AC 2,371 ms
96,220 KB
testcase_36 AC 2,362 ms
96,004 KB
testcase_37 AC 2,325 ms
96,096 KB
testcase_38 AC 2,362 ms
96,236 KB
testcase_39 AC 2,354 ms
96,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from scipy.spatial import KDTree


n, m, k = map(int, input().split())
p, q = map(int, input().split())
station = [tuple(map(int, input().split())) for _ in range(n)]
target = [tuple(map(int, input().split())) for _ in range(k)]

tree = KDTree(station)

d = tree.query((p, q), 1)[0]

dists = tree.query(target, 1)[0]
ans = 0
for (x, y), res in zip(target, dists):
    dx = x - p
    dy = y - q
    dist = min(d + res, (dx * dx + dy * dy) ** 0.5)
    ans += dist

print(2 * ans)
0