結果

問題 No.5020 Averaging
ユーザー titiatitia
提出日時 2024-02-25 16:40:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 976 ms / 1,000 ms
コード長 2,129 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 88,732 KB
スコア 27,916,890
最終ジャッジ日時 2024-02-25 16:41:36
合計ジャッジ時間 51,615 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 969 ms
86,968 KB
testcase_01 AC 971 ms
87,348 KB
testcase_02 AC 972 ms
86,328 KB
testcase_03 AC 973 ms
87,948 KB
testcase_04 AC 972 ms
87,392 KB
testcase_05 AC 971 ms
87,236 KB
testcase_06 AC 974 ms
87,088 KB
testcase_07 AC 971 ms
86,760 KB
testcase_08 AC 971 ms
87,812 KB
testcase_09 AC 972 ms
87,096 KB
testcase_10 AC 970 ms
88,196 KB
testcase_11 AC 971 ms
87,672 KB
testcase_12 AC 971 ms
88,156 KB
testcase_13 AC 970 ms
87,144 KB
testcase_14 AC 973 ms
87,504 KB
testcase_15 AC 972 ms
88,388 KB
testcase_16 AC 970 ms
87,256 KB
testcase_17 AC 970 ms
87,496 KB
testcase_18 AC 976 ms
86,984 KB
testcase_19 AC 971 ms
87,724 KB
testcase_20 AC 970 ms
87,244 KB
testcase_21 AC 971 ms
86,664 KB
testcase_22 AC 970 ms
88,732 KB
testcase_23 AC 970 ms
87,144 KB
testcase_24 AC 971 ms
87,352 KB
testcase_25 AC 971 ms
87,140 KB
testcase_26 AC 970 ms
88,392 KB
testcase_27 AC 972 ms
87,896 KB
testcase_28 AC 972 ms
87,236 KB
testcase_29 AC 972 ms
85,984 KB
testcase_30 AC 971 ms
87,336 KB
testcase_31 AC 971 ms
87,764 KB
testcase_32 AC 971 ms
87,960 KB
testcase_33 AC 971 ms
87,892 KB
testcase_34 AC 973 ms
87,736 KB
testcase_35 AC 971 ms
86,984 KB
testcase_36 AC 971 ms
87,224 KB
testcase_37 AC 971 ms
87,624 KB
testcase_38 AC 974 ms
88,116 KB
testcase_39 AC 972 ms
87,184 KB
testcase_40 AC 971 ms
87,132 KB
testcase_41 AC 971 ms
86,868 KB
testcase_42 AC 972 ms
87,400 KB
testcase_43 AC 972 ms
87,356 KB
testcase_44 AC 973 ms
87,768 KB
testcase_45 AC 971 ms
87,500 KB
testcase_46 AC 971 ms
87,632 KB
testcase_47 AC 971 ms
87,252 KB
testcase_48 AC 971 ms
87,352 KB
testcase_49 AC 972 ms
87,364 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 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]

            if y!=0 and len(ANS)<48:
            
                c1=(c0+A[y][0])//2
                d1=(d0+A[y][1])//2

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

        if y!=0:
        
            c0=(A[0][0]+A[y][0])//2
            d0=(A[0][1]+A[y][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]+[y]

            if x!=0 and len(ANS)<48:
            
                c1=(c0+A[x][0])//2
                d1=(d0+A[x][1])//2

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

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


        
        
    
    

0