結果

問題 No.5020 Averaging
ユーザー judgelawjudgelaw
提出日時 2024-02-25 14:05:45
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 2,868 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 83,672 KB
スコア 13,362,705
最終ジャッジ日時 2024-02-25 14:06:35
合計ジャッジ時間 48,065 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 937 ms
82,760 KB
testcase_01 AC 937 ms
82,592 KB
testcase_02 AC 936 ms
83,200 KB
testcase_03 AC 937 ms
82,996 KB
testcase_04 AC 937 ms
81,996 KB
testcase_05 AC 937 ms
81,796 KB
testcase_06 AC 938 ms
83,672 KB
testcase_07 AC 937 ms
81,600 KB
testcase_08 AC 942 ms
81,144 KB
testcase_09 AC 937 ms
81,484 KB
testcase_10 AC 935 ms
81,972 KB
testcase_11 AC 938 ms
81,232 KB
testcase_12 AC 937 ms
81,360 KB
testcase_13 AC 937 ms
82,352 KB
testcase_14 AC 937 ms
81,580 KB
testcase_15 AC 938 ms
83,020 KB
testcase_16 AC 937 ms
82,720 KB
testcase_17 AC 937 ms
81,896 KB
testcase_18 RE -
testcase_19 AC 937 ms
83,068 KB
testcase_20 AC 937 ms
83,084 KB
testcase_21 AC 937 ms
81,952 KB
testcase_22 AC 937 ms
82,892 KB
testcase_23 AC 938 ms
81,228 KB
testcase_24 AC 937 ms
81,072 KB
testcase_25 AC 937 ms
81,668 KB
testcase_26 AC 937 ms
82,156 KB
testcase_27 AC 937 ms
81,296 KB
testcase_28 AC 938 ms
81,740 KB
testcase_29 AC 937 ms
81,524 KB
testcase_30 AC 937 ms
82,104 KB
testcase_31 AC 936 ms
82,184 KB
testcase_32 AC 937 ms
82,024 KB
testcase_33 AC 938 ms
83,120 KB
testcase_34 AC 937 ms
81,768 KB
testcase_35 AC 938 ms
82,140 KB
testcase_36 AC 936 ms
81,776 KB
testcase_37 AC 937 ms
81,612 KB
testcase_38 AC 936 ms
81,484 KB
testcase_39 AC 937 ms
82,416 KB
testcase_40 AC 936 ms
82,232 KB
testcase_41 AC 937 ms
81,156 KB
testcase_42 AC 936 ms
82,728 KB
testcase_43 AC 938 ms
81,380 KB
testcase_44 AC 937 ms
82,640 KB
testcase_45 AC 937 ms
81,976 KB
testcase_46 AC 937 ms
81,868 KB
testcase_47 AC 937 ms
82,168 KB
testcase_48 AC 937 ms
81,740 KB
testcase_49 AC 937 ms
81,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from time import time
st=time()

import sys
input = lambda: sys.stdin.readline().rstrip()
from math import log10
from copy import copy,deepcopy
from random import randint,random,choice
from bisect import bisect,bisect_left,insort

MAX_OP=50
TIME_LIMIT=0.9
TARGET_NUM=5*10**17

# カード1のスコアだけ見ればいいのか
# 奇数回目の操作でカード1以外を操作する
# 偶数回目でカード1を操作する

# カード1のスコアを計算
def calc_Score(cnt,AB):
    V1=abs(AB[0][0]-TARGET_NUM)
    V2=abs(AB[0][1]-TARGET_NUM)
    
    temp=max(V1,V2)

    if temp==0:return 2000050-cnt
    return int(2000000-100000*log10(temp+1))

def rewrite_front(u,v):
    temp=(tempAB[u][0]+tempAB[v][0])//2
    tempAB[u][0]=temp
    tempAB[v][0]=temp

def rewrite_back(u,v):
    temp=(tempAB[u][1]+tempAB[v][1])//2
    tempAB[u][1]=temp
    tempAB[v][1]=temp


N=int(input())
AB=[list(map(int, input().split()))  for _ in range(N)]


NowScore=calc_Score(0,AB)
UV=[]
premove=-1
preop=-1

while time()-st<=TIME_LIMIT:

    tempAB=deepcopy(AB)    
    tempUV=[]
    pretempScore=0
    opcnt=randint(0,MAX_OP)

    for cnt in range(1,opcnt+1):

        # 各カード表裏について値を記録する
        F_set=[]
        B_set=[]

        for i in range(1,N):

            a,b=tempAB[i]
            insort(F_set,(a,i))
            insort(B_set,(b,i))

        if cnt&1:

            F,B=tempAB[0]



            # 表裏を適当に書き換える
            k=randint(0,1)
            preop=k
            if k:
                while 1:
                    a,u=choice(F_set)
                    bk=bisect_left(F_set,(2*TARGET_NUM-a,0))
                    if bk>=N-1:bk=N-2

                    b,v=F_set[bk]
                    if u!=v:break
                
                rewrite_front(u,v)


            else:
                while 1:
                    c,u=choice(B_set)
                    dk=bisect_left(B_set,(2*TARGET_NUM-c,0))
                    if dk>=N-1:dk=N-2

                    d,v=B_set[dk]
                    if u!=v:break

                rewrite_back(u,v)

            tempUV.append((u,v))
            premove=u


        else:
            k=randint(0,1)

            if k:

                a=tempAB[0][0]
                bk=bisect_left(F_set,(2*TARGET_NUM-a,0))
                if bk>=N-1:bk=N-2

                b,v=F_set[bk]
                rewrite_front(0,v)
            else:

                c=tempAB[0][1]
                dk=bisect_left(B_set,(2*TARGET_NUM-c,0))
                if dk>=N-1:dk=N-2

                d,v=B_set[dk]

                rewrite_back(0,v)



            tempScore=calc_Score(cnt,tempAB)
            if pretempScore>tempScore:break

            pretempScore=tempScore

    if tempScore>NowScore:
        NowScore=tempScore
        UV=deepcopy(tempUV)


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