結果

問題 No.2353 Guardian Dogs in Spring
ユーザー FromBooskaFromBooska
提出日時 2023-06-17 14:58:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 692 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 78,336 KB
最終ジャッジ日時 2024-06-25 05:32:32
合計ジャッジ時間 8,987 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 40 ms
51,456 KB
testcase_04 AC 41 ms
51,456 KB
testcase_05 AC 100 ms
77,184 KB
testcase_06 AC 103 ms
77,056 KB
testcase_07 AC 104 ms
77,824 KB
testcase_08 AC 103 ms
77,824 KB
testcase_09 AC 119 ms
77,440 KB
testcase_10 AC 120 ms
77,312 KB
testcase_11 AC 112 ms
77,952 KB
testcase_12 AC 116 ms
78,080 KB
testcase_13 AC 104 ms
77,696 KB
testcase_14 AC 43 ms
53,248 KB
testcase_15 AC 117 ms
78,080 KB
testcase_16 AC 116 ms
77,696 KB
testcase_17 AC 116 ms
78,080 KB
testcase_18 AC 117 ms
77,696 KB
testcase_19 AC 120 ms
78,336 KB
testcase_20 AC 45 ms
52,992 KB
testcase_21 AC 85 ms
73,856 KB
testcase_22 AC 103 ms
76,928 KB
testcase_23 AC 116 ms
77,824 KB
testcase_24 AC 83 ms
72,704 KB
testcase_25 AC 80 ms
71,936 KB
testcase_26 AC 65 ms
64,384 KB
testcase_27 AC 44 ms
52,992 KB
testcase_28 AC 95 ms
76,800 KB
testcase_29 AC 108 ms
77,312 KB
testcase_30 AC 110 ms
76,928 KB
testcase_31 AC 107 ms
77,568 KB
testcase_32 AC 115 ms
77,440 KB
testcase_33 AC 107 ms
77,696 KB
testcase_34 AC 107 ms
77,952 KB
testcase_35 AC 106 ms
77,824 KB
testcase_36 AC 89 ms
74,496 KB
testcase_37 AC 64 ms
63,872 KB
testcase_38 AC 100 ms
76,672 KB
testcase_39 AC 101 ms
76,928 KB
testcase_40 AC 103 ms
77,056 KB
testcase_41 AC 103 ms
77,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 全角度があるのか、それでは二部マッチング、最大流問題、フォード・ファルカーソン
# それともABC248Eのような線上に点を分類するのか
# 近い順にマッチングはダメ、たとえば直線状に1, 4, 5, 10の場合
# 実は単純に並べて番号を付けてマッチングさせればいいだけ
# 図を描くとわかる

N = int(input())
XY = []
for i in range(N):
    x, y = map(int, input().split())
    XY.append((x, y, i+1))
    
XY.sort(key = lambda x:(x[0], x[1]))

#print(XY)

ans_list = []
if N%2 == 0:
    length = N
else:
    length = N-1
print(length//2)
for i in range(length//2):
    print(XY[i*2][2], XY[i*2+1][2])
0