結果

問題 No.5020 Averaging
ユーザー YuuuTYuuuT
提出日時 2024-02-25 14:50:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 919 ms / 1,000 ms
コード長 1,885 bytes
コンパイル時間 395 ms
コンパイル使用メモリ 81,828 KB
実行使用メモリ 79,600 KB
スコア 24,442,385
最終ジャッジ日時 2024-02-25 14:51:43
合計ジャッジ時間 48,375 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 891 ms
79,060 KB
testcase_01 AC 889 ms
79,080 KB
testcase_02 AC 902 ms
78,944 KB
testcase_03 AC 900 ms
78,832 KB
testcase_04 AC 906 ms
78,688 KB
testcase_05 AC 910 ms
78,684 KB
testcase_06 AC 919 ms
78,408 KB
testcase_07 AC 893 ms
79,092 KB
testcase_08 AC 907 ms
79,184 KB
testcase_09 AC 909 ms
78,916 KB
testcase_10 AC 908 ms
78,780 KB
testcase_11 AC 892 ms
79,144 KB
testcase_12 AC 898 ms
78,820 KB
testcase_13 AC 894 ms
78,868 KB
testcase_14 AC 903 ms
79,364 KB
testcase_15 AC 903 ms
78,996 KB
testcase_16 AC 889 ms
79,456 KB
testcase_17 AC 909 ms
79,192 KB
testcase_18 AC 895 ms
78,936 KB
testcase_19 AC 905 ms
79,080 KB
testcase_20 AC 911 ms
78,836 KB
testcase_21 AC 900 ms
79,372 KB
testcase_22 AC 895 ms
78,928 KB
testcase_23 AC 906 ms
78,696 KB
testcase_24 AC 890 ms
79,180 KB
testcase_25 AC 896 ms
79,096 KB
testcase_26 AC 889 ms
78,800 KB
testcase_27 AC 907 ms
78,744 KB
testcase_28 AC 895 ms
79,156 KB
testcase_29 AC 899 ms
78,976 KB
testcase_30 AC 895 ms
78,924 KB
testcase_31 AC 914 ms
79,064 KB
testcase_32 AC 906 ms
78,740 KB
testcase_33 AC 906 ms
79,284 KB
testcase_34 AC 900 ms
78,996 KB
testcase_35 AC 903 ms
79,144 KB
testcase_36 AC 906 ms
79,228 KB
testcase_37 AC 899 ms
78,672 KB
testcase_38 AC 895 ms
79,048 KB
testcase_39 AC 893 ms
78,940 KB
testcase_40 AC 894 ms
78,956 KB
testcase_41 AC 911 ms
78,976 KB
testcase_42 AC 919 ms
79,004 KB
testcase_43 AC 891 ms
79,220 KB
testcase_44 AC 902 ms
79,600 KB
testcase_45 AC 908 ms
79,064 KB
testcase_46 AC 897 ms
78,808 KB
testcase_47 AC 897 ms
79,064 KB
testcase_48 AC 892 ms
79,192 KB
testcase_49 AC 897 ms
79,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from time import time
start = time()
import sys
from random import randint
from itertools import combinations
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

def create_abs(A,B,V1,V2):
  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(A,B): # 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()
  ind = randint(0,5)
  u,v = CAND[ind][1],CAND[ind][2]
  return u,v

def play(A,B):
  global MAXV,BEST_ANS
  TURN = 0
  ANS = list()
  V1,V2 = abs(A[0][0]-STAND),abs(B[0][0]-STAND)
  while TURN<50:
    if time()-start>0.9: return
    ABS = create_abs(A,B,V1,V2)
    if ABS[0][0]==0: # 頭打ちになったら1以外とマージする
      u,v = other_merge(A,B)
    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
    
  if MAXV>max(V1,V2):
    MAXV = max(V1,V2)
    BEST_ANS = [a[:] for a in ANS]
    return

BEST_ANS = list()
MAXV = pow(10,18)

while time()-start<0.85:
  AA = [a[:] for a in A]
  BB = [b[:] for b in B]
  play(AA,BB)

print(len(BEST_ANS))
for u,v in BEST_ANS: print(u,v)
0