結果

問題 No.2353 Guardian Dogs in Spring
ユーザー sepa38sepa38
提出日時 2023-06-16 22:01:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 681 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 78,588 KB
最終ジャッジ日時 2024-06-24 14:14:34
合計ジャッジ時間 28,312 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,312 KB
testcase_01 AC 40 ms
53,948 KB
testcase_02 AC 40 ms
53,108 KB
testcase_03 AC 39 ms
52,720 KB
testcase_04 AC 37 ms
52,828 KB
testcase_05 AC 1,012 ms
77,904 KB
testcase_06 AC 958 ms
77,832 KB
testcase_07 AC 1,050 ms
78,052 KB
testcase_08 AC 1,056 ms
78,580 KB
testcase_09 AC 968 ms
78,164 KB
testcase_10 AC 1,048 ms
78,152 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 997 ms
78,232 KB
testcase_14 WA -
testcase_15 AC 1,000 ms
78,100 KB
testcase_16 AC 1,014 ms
78,384 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 991 ms
78,528 KB
testcase_20 AC 55 ms
65,940 KB
testcase_21 AC 129 ms
76,976 KB
testcase_22 AC 232 ms
77,236 KB
testcase_23 AC 684 ms
77,960 KB
testcase_24 AC 135 ms
77,156 KB
testcase_25 AC 115 ms
76,640 KB
testcase_26 AC 99 ms
76,804 KB
testcase_27 AC 55 ms
65,392 KB
testcase_28 AC 140 ms
76,812 KB
testcase_29 AC 379 ms
78,220 KB
testcase_30 AC 244 ms
77,640 KB
testcase_31 AC 319 ms
77,536 KB
testcase_32 AC 730 ms
78,204 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 150 ms
77,064 KB
testcase_37 AC 100 ms
76,772 KB
testcase_38 AC 189 ms
77,332 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ls = [list(map(int, input().split())) for _ in range(n)]
md = [0] * n
for i in range(n):
  xi, yi = ls[i]
  d = 1 << 30
  for j in range(n):
    if i == j:
      continue
    xj, yj = ls[j]
    d = min(d, (xi-xj)**2+(yi-yj)**2)
  md[i] = d
order = [i for i in range(n)]
order.sort(key = lambda x: md[x])
ans = []
flg = [0] * n
print(n//2)
for i in order:
  if flg[i]:
    continue
  flg[i] = 1
  cnd = -1
  d = 1 << 30
  xi, yi = ls[i]
  for j in range(n):
    if flg[j]:
      continue
    xj, yj = ls[j]
    if d > (xi - xj) ** 2 + (yi - yj) ** 2:
      d = (xi - xj) ** 2 + (yi - yj) ** 2
      cnd = j
  if cnd != -1:
    print(i + 1, cnd + 1)
    flg[cnd] = 1
0