結果

問題 No.5020 Averaging
ユーザー kumkkumk
提出日時 2024-02-25 14:16:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 1,000 ms
コード長 1,892 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 68,988 KB
スコア 20,508,419
最終ジャッジ日時 2024-02-25 14:16:19
合計ジャッジ時間 5,310 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
68,980 KB
testcase_01 AC 61 ms
68,976 KB
testcase_02 AC 61 ms
68,988 KB
testcase_03 AC 62 ms
68,980 KB
testcase_04 AC 64 ms
66,888 KB
testcase_05 AC 62 ms
68,988 KB
testcase_06 AC 62 ms
66,892 KB
testcase_07 AC 61 ms
68,976 KB
testcase_08 AC 61 ms
68,972 KB
testcase_09 AC 62 ms
68,984 KB
testcase_10 AC 59 ms
66,888 KB
testcase_11 AC 60 ms
68,976 KB
testcase_12 AC 59 ms
66,888 KB
testcase_13 AC 62 ms
66,888 KB
testcase_14 AC 60 ms
68,976 KB
testcase_15 AC 60 ms
68,976 KB
testcase_16 AC 58 ms
66,888 KB
testcase_17 AC 62 ms
68,976 KB
testcase_18 AC 61 ms
68,976 KB
testcase_19 AC 61 ms
68,972 KB
testcase_20 AC 62 ms
68,972 KB
testcase_21 AC 62 ms
68,972 KB
testcase_22 AC 63 ms
68,976 KB
testcase_23 AC 59 ms
66,904 KB
testcase_24 AC 61 ms
66,888 KB
testcase_25 AC 61 ms
66,892 KB
testcase_26 AC 61 ms
68,976 KB
testcase_27 AC 65 ms
68,976 KB
testcase_28 AC 61 ms
68,976 KB
testcase_29 AC 62 ms
68,976 KB
testcase_30 AC 62 ms
68,976 KB
testcase_31 AC 64 ms
68,984 KB
testcase_32 AC 58 ms
66,892 KB
testcase_33 AC 62 ms
68,972 KB
testcase_34 AC 61 ms
68,972 KB
testcase_35 AC 60 ms
66,888 KB
testcase_36 AC 62 ms
68,972 KB
testcase_37 AC 60 ms
68,976 KB
testcase_38 AC 64 ms
68,976 KB
testcase_39 AC 57 ms
66,888 KB
testcase_40 AC 61 ms
68,976 KB
testcase_41 AC 64 ms
68,976 KB
testcase_42 AC 61 ms
66,888 KB
testcase_43 AC 61 ms
68,976 KB
testcase_44 AC 61 ms
68,984 KB
testcase_45 AC 61 ms
66,892 KB
testcase_46 AC 64 ms
68,972 KB
testcase_47 AC 62 ms
68,972 KB
testcase_48 AC 61 ms
66,892 KB
testcase_49 AC 60 ms
66,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math

import io
import sys
import random
TARGET = 5*(10**17)

def cal_score(v1, v2, isDisplay = False):
    error1 = abs(v1-TARGET)
    error2 = abs(v2-TARGET)
    sa = max(error1,error2)
    score = int(2 * 10**6 - 10**5 * math.log10(sa +1.0))    
    if isDisplay:
        print(TARGET,v1,v2)
        print(error1,error2,score)

    return score

def cal_ave(A,B, i,j):
    A[i] = (A[i] + A[j])//2
    A[j] = A[i]

    B[i] = (B[i] + B[j])//2
    B[j] = B[i]    

def save(A, B, i,j):
    return (i,j,A[i],B[i],A[j],B[j])

def restore(A, B, save):
    i,j = save[0], save[1]
    A[i],B[i],A[j],B[j] = save[2],save[3],save[4],save[5]

def main():
    args = sys.argv
    debug = False

    if len(args) >= 2:
        debug = True

    sys.setrecursionlimit(10000000)

    #H=int(input())

    #A=list(map(int,input().split()))

    #A,B=map(int,input().split())
    #A,B=input().split()

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


    
    # 入力
    N = int(input())
    A = [0] * (N +1)
    B = [0] * (N +1)
    for i in range(1,N+1):
        A[i], B[i] = map(int, input().split())


    # 出力
    print(50)
    for i in range(0, 50):
        now_score = cal_score(A[1],B[1])
        kouho = (1,1)
        for i in range(2, N + 1):
#            print("1 " + str(i))
            save_info = save(A,B,1,i)
            cal_ave(A,B,1,i)
            score = cal_score(A[1],B[1])

            restore(A,B,save_info)
            if now_score < score:
                kouho = (1,i)
        if kouho[1] ==1:
            while True:
                k,l = random.randint(2, N),random.randint(2, N)
                if k != l:
                    break
            kouho = (k,l)

        cal_ave(A,B,kouho[0],kouho[1])
        print(f"{kouho[0]} {kouho[1]}")    

        if debug:
            cal_score(A[1],B[1], True)

if __name__ == "__main__":
    main()
0