結果

問題 No.5020 Averaging
ユーザー miya145592miya145592
提出日時 2024-02-25 14:57:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 941 ms / 1,000 ms
コード長 846 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 78,780 KB
スコア 27,027,136
最終ジャッジ日時 2024-02-25 14:58:29
合計ジャッジ時間 49,981 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 939 ms
78,152 KB
testcase_01 AC 939 ms
78,000 KB
testcase_02 AC 940 ms
78,268 KB
testcase_03 AC 939 ms
78,268 KB
testcase_04 AC 939 ms
78,144 KB
testcase_05 AC 939 ms
78,400 KB
testcase_06 AC 939 ms
78,028 KB
testcase_07 AC 939 ms
78,256 KB
testcase_08 AC 940 ms
78,144 KB
testcase_09 AC 941 ms
78,392 KB
testcase_10 AC 941 ms
78,280 KB
testcase_11 AC 941 ms
78,272 KB
testcase_12 AC 940 ms
78,272 KB
testcase_13 AC 939 ms
78,136 KB
testcase_14 AC 940 ms
78,132 KB
testcase_15 AC 939 ms
78,276 KB
testcase_16 AC 940 ms
78,024 KB
testcase_17 AC 939 ms
78,148 KB
testcase_18 AC 940 ms
78,396 KB
testcase_19 AC 939 ms
78,144 KB
testcase_20 AC 941 ms
78,288 KB
testcase_21 AC 940 ms
78,408 KB
testcase_22 AC 940 ms
78,276 KB
testcase_23 AC 941 ms
78,016 KB
testcase_24 AC 940 ms
78,256 KB
testcase_25 AC 939 ms
78,388 KB
testcase_26 AC 940 ms
78,408 KB
testcase_27 AC 938 ms
78,504 KB
testcase_28 AC 940 ms
78,532 KB
testcase_29 AC 940 ms
78,416 KB
testcase_30 AC 940 ms
78,284 KB
testcase_31 AC 940 ms
78,140 KB
testcase_32 AC 940 ms
78,140 KB
testcase_33 AC 940 ms
78,648 KB
testcase_34 AC 939 ms
78,392 KB
testcase_35 AC 940 ms
78,020 KB
testcase_36 AC 939 ms
78,264 KB
testcase_37 AC 938 ms
78,120 KB
testcase_38 AC 941 ms
78,392 KB
testcase_39 AC 940 ms
78,408 KB
testcase_40 AC 941 ms
78,152 KB
testcase_41 AC 939 ms
78,124 KB
testcase_42 AC 940 ms
78,396 KB
testcase_43 AC 940 ms
78,256 KB
testcase_44 AC 939 ms
78,268 KB
testcase_45 AC 940 ms
78,780 KB
testcase_46 AC 940 ms
78,280 KB
testcase_47 AC 939 ms
78,396 KB
testcase_48 AC 939 ms
78,140 KB
testcase_49 AC 940 ms
78,144 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 _ in range(50):
        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(len(min_ans))
for a in min_ans:
    print(*a)
0