結果

問題 No.5020 Averaging
ユーザー miya145592miya145592
提出日時 2024-02-25 16:51:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 946 ms / 1,000 ms
コード長 949 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 78,772 KB
スコア 29,266,440
最終ジャッジ日時 2024-02-25 16:52:54
合計ジャッジ時間 50,386 ms
ジャッジサーバーID
(参考情報)
judge10 / judge11
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 942 ms
78,268 KB
testcase_01 AC 941 ms
78,272 KB
testcase_02 AC 942 ms
78,152 KB
testcase_03 AC 946 ms
78,508 KB
testcase_04 AC 942 ms
78,180 KB
testcase_05 AC 943 ms
78,528 KB
testcase_06 AC 941 ms
78,652 KB
testcase_07 AC 942 ms
78,680 KB
testcase_08 AC 941 ms
78,296 KB
testcase_09 AC 942 ms
78,444 KB
testcase_10 AC 942 ms
78,396 KB
testcase_11 AC 942 ms
78,388 KB
testcase_12 AC 942 ms
78,404 KB
testcase_13 AC 942 ms
77,888 KB
testcase_14 AC 942 ms
78,028 KB
testcase_15 AC 941 ms
78,280 KB
testcase_16 AC 943 ms
78,192 KB
testcase_17 AC 943 ms
78,552 KB
testcase_18 AC 942 ms
78,004 KB
testcase_19 AC 942 ms
78,340 KB
testcase_20 AC 943 ms
78,260 KB
testcase_21 AC 942 ms
78,028 KB
testcase_22 AC 942 ms
78,280 KB
testcase_23 AC 941 ms
77,884 KB
testcase_24 AC 942 ms
78,340 KB
testcase_25 AC 942 ms
78,028 KB
testcase_26 AC 943 ms
78,408 KB
testcase_27 AC 942 ms
78,296 KB
testcase_28 AC 942 ms
78,376 KB
testcase_29 AC 942 ms
78,152 KB
testcase_30 AC 942 ms
78,292 KB
testcase_31 AC 942 ms
78,196 KB
testcase_32 AC 943 ms
78,252 KB
testcase_33 AC 944 ms
78,152 KB
testcase_34 AC 941 ms
78,140 KB
testcase_35 AC 942 ms
78,260 KB
testcase_36 AC 942 ms
78,136 KB
testcase_37 AC 942 ms
78,392 KB
testcase_38 AC 943 ms
78,272 KB
testcase_39 AC 941 ms
78,280 KB
testcase_40 AC 942 ms
78,140 KB
testcase_41 AC 942 ms
78,392 KB
testcase_42 AC 942 ms
78,272 KB
testcase_43 AC 941 ms
78,428 KB
testcase_44 AC 942 ms
78,772 KB
testcase_45 AC 942 ms
78,524 KB
testcase_46 AC 942 ms
78,016 KB
testcase_47 AC 943 ms
78,508 KB
testcase_48 AC 942 ms
77,884 KB
testcase_49 AC 942 ms
78,392 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):
        if i%5==0:
            u = v = 0
        else:
            u = v = random.randrange(N)
        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