結果

問題 No.5020 Averaging
ユーザー YuuuT
提出日時 2024-02-25 14:02:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 165 ms / 1,000 ms
コード長 1,809 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 77,380 KB
スコア 21,197,878
最終ジャッジ日時 2024-02-25 14:02:47
合計ジャッジ時間 8,439 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 50
権限があれば一括ダウンロードができます

ソースコード

diff #

from time import time
start = time()
import sys,math
if len(sys.argv) == 2: sys.stdin = open(sys.argv[1])
from random import randint,randrange,sample,shuffle,choice
from collections import defaultdict,deque
from itertools import combinations,permutations,accumulate,product
from bisect import bisect,bisect_left,bisect_right
from heapq import heappop,heappush,heapify
from copy import deepcopy
def input(): return sys.stdin.readline().rstrip()
def ii(): return int(input())
def ms(): return map(int, input().split())
def li(): return list(map(int,input().split()))
# ////////////////////////////////
N = ii()
A = list()
B = list()
for i in range(N):
  a,b = ms()
  A.append([a,i])
  B.append([b,i])
NUM = [i for i in range(2,N)]
STAND = 5*pow(10,17)
TURN = 0
V1,V2 = abs(A[0][0]-STAND),abs(B[0][0]-STAND)
def create_abs():
  ABS = list()
  for v in range(1,N):
    na,nb = (A[0][0]+A[v][0])//2,(B[0][0]+B[v][0])//2
    n1,n2 = abs(na-STAND),abs(nb-STAND)
    tmp = max(V1,V2)-max(n1,n2)
    ABS.append((tmp,v))
  ABS.sort(reverse=True)
  return ABS

def other_merge(): # STANDにできるだけ近いやつを作る
  CAND = list()
  for (u,v) in combinations(NUM,2):
    na,nb = (A[u][0]+A[v][0])//2,(B[u][0]+B[v][0])//2
    n1,n2 = abs(na-STAND),abs(nb-STAND)
    CAND.append((max(n1,n2),u,v))
  CAND.sort()
  u,v = CAND[0][1],CAND[0][2]
  return u,v


ANS = list()
while TURN<50:
  if time()-start>2.85: break
  ABS = create_abs()
  if ABS[0][0]==0: # 頭打ちになったら1以外とマージする
    u,v = other_merge()
  else:
    u,v = 0,ABS[0][1]
  ANS.append((u+1,v+1))
  na,nb = (A[u][0]+A[v][0])//2,(B[u][0]+B[v][0])//2
  if u==0:
    n1,n2 = abs(na-STAND),abs(nb-STAND)
    V1,V2 = n1,n2
  A[u][0],A[v][0],B[u][0],B[v][0] = na,na,nb,nb
  TURN += 1
  
print(len(ANS))
for u,v in ANS: print(u,v)
0