結果

問題 No.5020 Averaging
ユーザー YuuuTYuuuT
提出日時 2024-02-25 13:44:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 1,000 ms
コード長 1,032 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 63,932 KB
スコア 19,167,042
最終ジャッジ日時 2024-02-25 13:44:11
合計ジャッジ時間 4,727 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
63,928 KB
testcase_01 AC 49 ms
63,928 KB
testcase_02 AC 49 ms
63,932 KB
testcase_03 AC 48 ms
63,928 KB
testcase_04 AC 49 ms
63,920 KB
testcase_05 AC 50 ms
63,928 KB
testcase_06 AC 48 ms
63,916 KB
testcase_07 AC 47 ms
63,904 KB
testcase_08 AC 49 ms
63,908 KB
testcase_09 AC 48 ms
63,908 KB
testcase_10 AC 50 ms
63,904 KB
testcase_11 AC 49 ms
63,916 KB
testcase_12 AC 51 ms
63,928 KB
testcase_13 AC 49 ms
63,904 KB
testcase_14 AC 49 ms
63,928 KB
testcase_15 AC 49 ms
63,928 KB
testcase_16 AC 48 ms
63,904 KB
testcase_17 AC 49 ms
63,904 KB
testcase_18 AC 49 ms
63,928 KB
testcase_19 AC 50 ms
63,924 KB
testcase_20 AC 49 ms
63,904 KB
testcase_21 AC 48 ms
63,904 KB
testcase_22 AC 48 ms
63,904 KB
testcase_23 AC 48 ms
63,904 KB
testcase_24 AC 48 ms
63,904 KB
testcase_25 AC 49 ms
63,904 KB
testcase_26 AC 49 ms
63,904 KB
testcase_27 AC 48 ms
63,904 KB
testcase_28 AC 49 ms
63,904 KB
testcase_29 AC 47 ms
63,904 KB
testcase_30 AC 47 ms
63,904 KB
testcase_31 AC 48 ms
63,916 KB
testcase_32 AC 49 ms
63,904 KB
testcase_33 AC 48 ms
63,904 KB
testcase_34 AC 50 ms
63,908 KB
testcase_35 AC 49 ms
63,928 KB
testcase_36 AC 48 ms
63,908 KB
testcase_37 AC 47 ms
63,904 KB
testcase_38 AC 49 ms
63,904 KB
testcase_39 AC 49 ms
63,904 KB
testcase_40 AC 48 ms
63,904 KB
testcase_41 AC 47 ms
63,904 KB
testcase_42 AC 48 ms
63,924 KB
testcase_43 AC 49 ms
63,904 KB
testcase_44 AC 49 ms
63,924 KB
testcase_45 AC 48 ms
63,928 KB
testcase_46 AC 49 ms
63,908 KB
testcase_47 AC 47 ms
63,904 KB
testcase_48 AC 49 ms
63,904 KB
testcase_49 AC 49 ms
63,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ANS = list()
while TURN<50:
  if time()-start>0.9: break
  ABS = create_abs()
  v = ABS[0][1]

  ANS.append((1,v+1))
  na,nb = (A[0][0]+A[v][0])//2,(B[0][0]+B[v][0])//2
  n1,n2 = abs(na-STAND),abs(nb-STAND)
  V1,V2 = n1,n2
  A[0][0],A[v][0],B[0][0],B[v][0] = na,na,nb,nb
  TURN += 1
  
print(len(ANS))
for u,v in ANS: print(u,v)
0