結果

問題 No.5020 Averaging
ユーザー titiatitia
提出日時 2024-02-25 16:34:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 949 ms / 1,000 ms
コード長 2,315 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 89,108 KB
スコア 27,810,889
最終ジャッジ日時 2024-02-25 16:36:11
合計ジャッジ時間 50,447 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 945 ms
87,956 KB
testcase_01 AC 943 ms
87,792 KB
testcase_02 AC 941 ms
88,580 KB
testcase_03 AC 942 ms
88,668 KB
testcase_04 AC 941 ms
86,496 KB
testcase_05 AC 942 ms
88,632 KB
testcase_06 AC 943 ms
88,248 KB
testcase_07 AC 940 ms
87,848 KB
testcase_08 AC 948 ms
87,432 KB
testcase_09 AC 941 ms
88,392 KB
testcase_10 AC 942 ms
87,860 KB
testcase_11 AC 943 ms
87,596 KB
testcase_12 AC 943 ms
87,708 KB
testcase_13 AC 941 ms
87,096 KB
testcase_14 AC 943 ms
88,372 KB
testcase_15 AC 943 ms
87,796 KB
testcase_16 AC 941 ms
88,028 KB
testcase_17 AC 942 ms
82,636 KB
testcase_18 AC 945 ms
82,616 KB
testcase_19 AC 942 ms
81,860 KB
testcase_20 AC 945 ms
85,332 KB
testcase_21 AC 943 ms
86,068 KB
testcase_22 AC 945 ms
85,456 KB
testcase_23 AC 942 ms
83,128 KB
testcase_24 AC 944 ms
82,876 KB
testcase_25 AC 942 ms
82,232 KB
testcase_26 AC 942 ms
87,788 KB
testcase_27 AC 942 ms
88,292 KB
testcase_28 AC 943 ms
87,140 KB
testcase_29 AC 943 ms
87,492 KB
testcase_30 AC 941 ms
87,904 KB
testcase_31 AC 943 ms
89,108 KB
testcase_32 AC 941 ms
87,792 KB
testcase_33 AC 941 ms
87,396 KB
testcase_34 AC 941 ms
87,736 KB
testcase_35 AC 943 ms
87,992 KB
testcase_36 AC 941 ms
87,348 KB
testcase_37 AC 942 ms
87,212 KB
testcase_38 AC 942 ms
88,368 KB
testcase_39 AC 942 ms
88,128 KB
testcase_40 AC 940 ms
88,588 KB
testcase_41 AC 940 ms
87,840 KB
testcase_42 AC 942 ms
87,756 KB
testcase_43 AC 942 ms
88,008 KB
testcase_44 AC 943 ms
88,012 KB
testcase_45 AC 942 ms
87,648 KB
testcase_46 AC 942 ms
87,872 KB
testcase_47 AC 949 ms
88,396 KB
testcase_48 AC 941 ms
86,484 KB
testcase_49 AC 941 ms
87,192 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 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]

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

            c1=(c0+A[0][0])//2
            d1=(d0+A[0][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[:]+[x]+[y]+[0]+[x]
            

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


        
        
    
    

0