結果

問題 No.2353 Guardian Dogs in Spring
ユーザー mkawa2mkawa2
提出日時 2023-06-16 22:31:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 353 ms / 2,000 ms
コード長 1,285 bytes
コンパイル時間 404 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 78,900 KB
最終ジャッジ日時 2024-06-24 15:09:46
合計ジャッジ時間 12,526 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,184 KB
testcase_01 AC 40 ms
52,864 KB
testcase_02 AC 40 ms
53,904 KB
testcase_03 AC 40 ms
53,748 KB
testcase_04 AC 39 ms
53,332 KB
testcase_05 AC 213 ms
77,696 KB
testcase_06 AC 221 ms
77,680 KB
testcase_07 AC 230 ms
77,612 KB
testcase_08 AC 230 ms
77,604 KB
testcase_09 AC 353 ms
78,316 KB
testcase_10 AC 342 ms
78,100 KB
testcase_11 AC 240 ms
77,664 KB
testcase_12 AC 236 ms
78,156 KB
testcase_13 AC 287 ms
78,076 KB
testcase_14 AC 48 ms
61,768 KB
testcase_15 AC 296 ms
78,648 KB
testcase_16 AC 295 ms
78,420 KB
testcase_17 AC 291 ms
78,344 KB
testcase_18 AC 289 ms
78,896 KB
testcase_19 AC 293 ms
78,900 KB
testcase_20 AC 46 ms
59,740 KB
testcase_21 AC 93 ms
76,900 KB
testcase_22 AC 139 ms
77,140 KB
testcase_23 AC 219 ms
78,512 KB
testcase_24 AC 91 ms
76,972 KB
testcase_25 AC 88 ms
77,384 KB
testcase_26 AC 71 ms
70,248 KB
testcase_27 AC 46 ms
61,348 KB
testcase_28 AC 99 ms
77,364 KB
testcase_29 AC 179 ms
77,520 KB
testcase_30 AC 143 ms
77,192 KB
testcase_31 AC 174 ms
77,216 KB
testcase_32 AC 222 ms
78,272 KB
testcase_33 AC 283 ms
78,300 KB
testcase_34 AC 283 ms
78,524 KB
testcase_35 AC 275 ms
78,284 KB
testcase_36 AC 92 ms
77,244 KB
testcase_37 AC 68 ms
69,480 KB
testcase_38 AC 123 ms
77,168 KB
testcase_39 AC 117 ms
77,176 KB
testcase_40 AC 167 ms
77,412 KB
testcase_41 AC 192 ms
77,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(1000005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = (1 << 63)-1
# md = 10**9+7
md = 998244353

def outer(x,y,p,q,s,t):
    return (s-x)*(q-y)-(t-y)*(p-x)

n = II()
xy = []
for i in range(n):
    x, y = LI()
    xy.append((x, y, i))
xy.sort()
fin = [0]*n

ans = []
for p, (x, y, i) in enumerate(xy):
    if fin[p]:continue
    q=p+1
    while q<n and fin[q]:q+=1
    if q==n:break
    a,b,_=xy[q]
    for r in range(q+1,n):
        if fin[r]:continue
        c,d,_=xy[r]
        if outer(x,y,a,b,c,d)>0:
            a,b,q=c,d,r
    j=xy[q][2]
    ans.append((i+1,j+1))
    fin[p]=1
    fin[q]=1

print(len(ans))
for i,j in ans:print(i,j)
0