結果

問題 No.5020 Averaging
ユーザー titiatitia
提出日時 2024-02-25 16:47:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 979 ms / 1,000 ms
コード長 1,258 bytes
コンパイル時間 719 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 83,384 KB
スコア 29,818,625
最終ジャッジ日時 2024-02-25 16:48:39
合計ジャッジ時間 51,865 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 971 ms
82,004 KB
testcase_01 AC 971 ms
81,872 KB
testcase_02 AC 971 ms
81,768 KB
testcase_03 AC 971 ms
82,000 KB
testcase_04 AC 971 ms
80,352 KB
testcase_05 AC 971 ms
82,384 KB
testcase_06 AC 970 ms
81,872 KB
testcase_07 AC 969 ms
81,952 KB
testcase_08 AC 970 ms
81,556 KB
testcase_09 AC 970 ms
81,976 KB
testcase_10 AC 970 ms
81,536 KB
testcase_11 AC 971 ms
81,840 KB
testcase_12 AC 971 ms
81,500 KB
testcase_13 AC 970 ms
80,876 KB
testcase_14 AC 970 ms
81,756 KB
testcase_15 AC 971 ms
81,836 KB
testcase_16 AC 970 ms
80,532 KB
testcase_17 AC 969 ms
81,444 KB
testcase_18 AC 970 ms
81,648 KB
testcase_19 AC 970 ms
81,488 KB
testcase_20 AC 970 ms
82,736 KB
testcase_21 AC 970 ms
82,668 KB
testcase_22 AC 970 ms
81,052 KB
testcase_23 AC 969 ms
80,848 KB
testcase_24 AC 970 ms
80,984 KB
testcase_25 AC 971 ms
82,448 KB
testcase_26 AC 970 ms
82,484 KB
testcase_27 AC 969 ms
81,444 KB
testcase_28 AC 970 ms
81,748 KB
testcase_29 AC 971 ms
82,324 KB
testcase_30 AC 970 ms
82,668 KB
testcase_31 AC 970 ms
81,756 KB
testcase_32 AC 970 ms
81,360 KB
testcase_33 AC 970 ms
82,272 KB
testcase_34 AC 970 ms
82,876 KB
testcase_35 AC 970 ms
82,256 KB
testcase_36 AC 971 ms
81,032 KB
testcase_37 AC 970 ms
81,500 KB
testcase_38 AC 969 ms
81,872 KB
testcase_39 AC 970 ms
81,876 KB
testcase_40 AC 972 ms
81,064 KB
testcase_41 AC 970 ms
80,604 KB
testcase_42 AC 970 ms
80,992 KB
testcase_43 AC 970 ms
82,524 KB
testcase_44 AC 970 ms
81,460 KB
testcase_45 AC 979 ms
80,820 KB
testcase_46 AC 970 ms
81,468 KB
testcase_47 AC 970 ms
83,384 KB
testcase_48 AC 970 ms
81,116 KB
testcase_49 AC 971 ms
81,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from random import randint
from time import time

time0=time()

N=int(input())
A=[list(map(int,input().split())) for i in range(N)]

A_INI=[]
for a,b in A:
    A_INI.append([a,b])

LANS=[]
score=10**18

while time()-time0<0.93:
    ANS=[]
    A=[]
    for a,b in A_INI:
        A.append([a,b])

    for i in range(49):
        while True:
            x,y=randint(0,N-1),randint(0,N-1)

            if x==y:
                continue
            else:
                break

        c=(A[x][0]+A[y][0])//2
        d=(A[x][1]+A[y][1])//2

        A[x][0]=A[y][0]=c
        A[x][1]=A[y][1]=d

        ANS.append(x)
        ANS.append(y)

        if (x==0 or y==0) and max(abs(5*(10**17)-A[0][0]),abs(5*(10**17)-A[0][1]))<score:
            score=max(abs(5*(10**17)-A[0][0]),abs(5*(10**17)-A[0][1]))
            LANS=ANS[:]

        if x!=0:

            c0=(A[0][0]+A[x][0])//2
            d0=(A[0][1]+A[x][1])//2

            if max(abs(5*(10**17)-c0),abs(5*(10**17)-d0))<score:
                score=max(abs(5*(10**17)-c0),abs(5*(10**17)-d0))
                LANS=ANS[:]+[0]+[x]    

print(len(LANS)//2)
for i in range(0,len(LANS),2):
    print(LANS[i]+1,LANS[i+1]+1)
            
        


        
        
    
    

0