結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,416 KB
testcase_01 AC 38 ms
53,800 KB
testcase_02 AC 38 ms
52,732 KB
testcase_03 AC 38 ms
52,996 KB
testcase_04 AC 37 ms
52,496 KB
testcase_05 AC 966 ms
78,128 KB
testcase_06 AC 927 ms
78,256 KB
testcase_07 AC 1,057 ms
77,952 KB
testcase_08 AC 1,076 ms
78,088 KB
testcase_09 AC 938 ms
78,324 KB
testcase_10 AC 1,029 ms
78,256 KB
testcase_11 AC 909 ms
78,236 KB
testcase_12 AC 927 ms
78,000 KB
testcase_13 AC 990 ms
77,992 KB
testcase_14 WA -
testcase_15 AC 969 ms
78,100 KB
testcase_16 AC 987 ms
78,164 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 958 ms
78,192 KB
testcase_20 AC 54 ms
64,416 KB
testcase_21 AC 126 ms
77,196 KB
testcase_22 AC 235 ms
77,000 KB
testcase_23 AC 700 ms
78,032 KB
testcase_24 AC 120 ms
76,964 KB
testcase_25 AC 107 ms
77,008 KB
testcase_26 AC 93 ms
76,796 KB
testcase_27 AC 55 ms
64,404 KB
testcase_28 AC 138 ms
77,012 KB
testcase_29 AC 376 ms
78,164 KB
testcase_30 AC 243 ms
77,220 KB
testcase_31 AC 317 ms
77,840 KB
testcase_32 AC 717 ms
77,972 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 147 ms
77,200 KB
testcase_37 AC 100 ms
77,100 KB
testcase_38 AC 195 ms
77,336 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], ls[x][0]])
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