結果

問題 No.5020 Averaging
ユーザー titiatitia
提出日時 2024-02-25 16:26:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 943 ms / 1,000 ms
コード長 1,333 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 84,256 KB
スコア 29,678,440
最終ジャッジ日時 2024-02-25 16:26:54
合計ジャッジ時間 50,040 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 942 ms
82,656 KB
testcase_01 AC 940 ms
83,364 KB
testcase_02 AC 941 ms
82,144 KB
testcase_03 AC 941 ms
84,256 KB
testcase_04 AC 941 ms
82,512 KB
testcase_05 AC 941 ms
82,228 KB
testcase_06 AC 941 ms
82,412 KB
testcase_07 AC 940 ms
83,156 KB
testcase_08 AC 941 ms
81,920 KB
testcase_09 AC 941 ms
83,660 KB
testcase_10 AC 940 ms
82,772 KB
testcase_11 AC 943 ms
83,512 KB
testcase_12 AC 941 ms
81,968 KB
testcase_13 AC 941 ms
81,940 KB
testcase_14 AC 941 ms
81,864 KB
testcase_15 AC 941 ms
82,372 KB
testcase_16 AC 941 ms
81,984 KB
testcase_17 AC 941 ms
83,144 KB
testcase_18 AC 941 ms
81,820 KB
testcase_19 AC 941 ms
82,852 KB
testcase_20 AC 940 ms
82,876 KB
testcase_21 AC 941 ms
82,472 KB
testcase_22 AC 940 ms
81,988 KB
testcase_23 AC 941 ms
81,840 KB
testcase_24 AC 940 ms
82,496 KB
testcase_25 AC 941 ms
82,752 KB
testcase_26 AC 943 ms
83,388 KB
testcase_27 AC 940 ms
81,852 KB
testcase_28 AC 941 ms
82,968 KB
testcase_29 AC 942 ms
82,612 KB
testcase_30 AC 941 ms
83,988 KB
testcase_31 AC 940 ms
82,948 KB
testcase_32 AC 940 ms
83,272 KB
testcase_33 AC 943 ms
83,136 KB
testcase_34 AC 940 ms
83,524 KB
testcase_35 AC 941 ms
82,244 KB
testcase_36 AC 941 ms
81,980 KB
testcase_37 AC 940 ms
82,144 KB
testcase_38 AC 941 ms
83,252 KB
testcase_39 AC 941 ms
82,784 KB
testcase_40 AC 939 ms
82,640 KB
testcase_41 AC 940 ms
82,460 KB
testcase_42 AC 940 ms
82,236 KB
testcase_43 AC 940 ms
83,476 KB
testcase_44 AC 941 ms
83,020 KB
testcase_45 AC 943 ms
82,900 KB
testcase_46 AC 940 ms
82,616 KB
testcase_47 AC 941 ms
81,936 KB
testcase_48 AC 940 ms
82,228 KB
testcase_49 AC 941 ms
81,792 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.9:
    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:

            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:
        
            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]

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


        
        
    
    

0