結果

問題 No.5020 Averaging
ユーザー miya145592miya145592
提出日時 2024-02-25 16:59:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 944 ms / 1,000 ms
コード長 872 bytes
コンパイル時間 492 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 77,500 KB
スコア 31,449,066
最終ジャッジ日時 2024-02-25 17:02:26
合計ジャッジ時間 50,398 ms
ジャッジサーバーID
(参考情報)
judge11 / judge10
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 942 ms
77,368 KB
testcase_01 AC 941 ms
77,356 KB
testcase_02 AC 941 ms
77,240 KB
testcase_03 AC 943 ms
77,368 KB
testcase_04 AC 941 ms
77,228 KB
testcase_05 AC 941 ms
77,372 KB
testcase_06 AC 942 ms
77,364 KB
testcase_07 AC 943 ms
77,352 KB
testcase_08 AC 941 ms
77,360 KB
testcase_09 AC 940 ms
77,372 KB
testcase_10 AC 941 ms
77,360 KB
testcase_11 AC 940 ms
77,352 KB
testcase_12 AC 941 ms
77,352 KB
testcase_13 AC 942 ms
77,352 KB
testcase_14 AC 941 ms
77,348 KB
testcase_15 AC 942 ms
77,360 KB
testcase_16 AC 941 ms
77,248 KB
testcase_17 AC 941 ms
77,356 KB
testcase_18 AC 941 ms
77,352 KB
testcase_19 AC 941 ms
77,348 KB
testcase_20 AC 941 ms
77,256 KB
testcase_21 AC 942 ms
77,368 KB
testcase_22 AC 940 ms
77,228 KB
testcase_23 AC 944 ms
77,232 KB
testcase_24 AC 942 ms
77,356 KB
testcase_25 AC 942 ms
77,368 KB
testcase_26 AC 942 ms
77,348 KB
testcase_27 AC 942 ms
77,360 KB
testcase_28 AC 941 ms
77,356 KB
testcase_29 AC 941 ms
77,240 KB
testcase_30 AC 942 ms
77,368 KB
testcase_31 AC 941 ms
77,352 KB
testcase_32 AC 943 ms
77,500 KB
testcase_33 AC 941 ms
77,224 KB
testcase_34 AC 942 ms
77,368 KB
testcase_35 AC 942 ms
77,228 KB
testcase_36 AC 941 ms
77,220 KB
testcase_37 AC 941 ms
77,232 KB
testcase_38 AC 941 ms
77,352 KB
testcase_39 AC 941 ms
77,356 KB
testcase_40 AC 942 ms
77,356 KB
testcase_41 AC 941 ms
77,368 KB
testcase_42 AC 942 ms
77,364 KB
testcase_43 AC 942 ms
77,368 KB
testcase_44 AC 941 ms
77,228 KB
testcase_45 AC 941 ms
77,352 KB
testcase_46 AC 941 ms
77,368 KB
testcase_47 AC 941 ms
77,360 KB
testcase_48 AC 942 ms
77,240 KB
testcase_49 AC 941 ms
77,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def score(a, b):
    return max(abs(a-5*10**17), abs(b-5*10**17))

import time
import random
import sys
input = sys.stdin.readline
N = int(input())
AB = [list(map(int, input().split())) for _ in range(N)]
st_time = time.time()
A = []
B = []
for a, b in AB:
    A.append(a)
    B.append(b)
min_ans = []
ini_sco = min_sco = score(A[0], B[0])
while time.time()-st_time<0.9:
    AA = A[:]
    BB = B[:]
    ans = []
    for i in range(50):
        u = v = 0
        while u==v:
            v = random.randrange(N)
        AA[u] = AA[v] = (AA[u]+AA[v])//2
        BB[u] = BB[v] = (BB[u]+BB[v])//2
        ans.append((u+1, v+1))
        if u==0 or v==0:
            sco = score(AA[0], BB[0])
            if sco<min_sco:
                min_sco = sco
                min_ans = ans[:]
                print(sco, file=sys.stderr)
print(len(min_ans))
for a in min_ans:
    print(*a)
0