結果

問題 No.2353 Guardian Dogs in Spring
ユーザー navel_tosnavel_tos
提出日時 2023-06-16 22:07:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 544 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 77,752 KB
最終ジャッジ日時 2024-06-24 14:24:47
合計ジャッジ時間 14,385 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,904 KB
testcase_01 AC 37 ms
53,248 KB
testcase_02 AC 37 ms
52,632 KB
testcase_03 AC 37 ms
53,228 KB
testcase_04 AC 38 ms
52,524 KB
testcase_05 AC 297 ms
77,204 KB
testcase_06 AC 296 ms
77,260 KB
testcase_07 AC 296 ms
77,348 KB
testcase_08 AC 300 ms
77,044 KB
testcase_09 AC 291 ms
77,240 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 292 ms
77,084 KB
testcase_14 WA -
testcase_15 AC 369 ms
77,224 KB
testcase_16 AC 372 ms
77,428 KB
testcase_17 WA -
testcase_18 AC 382 ms
77,500 KB
testcase_19 AC 384 ms
77,224 KB
testcase_20 AC 52 ms
61,920 KB
testcase_21 AC 100 ms
76,748 KB
testcase_22 AC 143 ms
76,764 KB
testcase_23 AC 301 ms
76,952 KB
testcase_24 AC 96 ms
76,952 KB
testcase_25 AC 90 ms
76,888 KB
testcase_26 AC 70 ms
71,324 KB
testcase_27 AC 50 ms
63,012 KB
testcase_28 AC 102 ms
76,772 KB
testcase_29 AC 195 ms
77,056 KB
testcase_30 AC 144 ms
76,836 KB
testcase_31 AC 175 ms
77,140 KB
testcase_32 AC 309 ms
77,200 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 100 ms
76,940 KB
testcase_37 AC 72 ms
71,064 KB
testcase_38 AC 118 ms
77,056 KB
testcase_39 AC 117 ms
77,008 KB
testcase_40 WA -
testcase_41 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#yukicoder393D

'''
「近い奴とつねに向き合う」ってしょうもな貪欲法するか。
ただN=8000だとちょっと制約がきついなぁ。
'''
f=lambda:tuple(map(int,input().split()))
N=int(input()); P=[f() for _ in range(N)]; looked=[0]*N; print(N//2)
for i in range(N//2*2):
    if looked[i]: continue
    dist,now=10**18,-1
    for j in range(i+1,N//2*2):
        if looked[j]: continue
        D=(P[i][0]-P[j][0])**2+(P[i][1]-P[j][1])**2
        if D<dist: dist,now=D,j
    print(i+1,now+1); looked[i]=1; looked[now]=1
0