結果

問題 No.5020 Averaging
ユーザー kumkkumk
提出日時 2024-02-25 13:53:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,725 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 68,976 KB
スコア 0
最終ジャッジ日時 2024-02-25 13:53:53
合計ジャッジ時間 5,469 ms
ジャッジサーバーID
(参考情報)
judge11 / judge10
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import sys
import math

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

def cal_score(v1, v2):
    sa = max(abs(v1-TARGET),abs(v2-TARGET))
    return 2 * 10**6 - 10**5 * math.log10(sa +1)

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(2, 50 + 1):
        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:
            print(cal_score(A[1],B[1]))

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