結果
問題 | No.2248 max(C)-min(C) |
ユーザー | H20 |
提出日時 | 2023-03-17 22:40:05 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 750 bytes |
コンパイル時間 | 491 ms |
コンパイル使用メモリ | 82,244 KB |
実行使用メモリ | 244,032 KB |
最終ジャッジ日時 | 2024-09-18 11:49:13 |
合計ジャッジ時間 | 65,877 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
54,144 KB |
testcase_01 | AC | 43 ms
53,632 KB |
testcase_02 | AC | 42 ms
53,760 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
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 | AC | 2,300 ms
225,900 KB |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | AC | 2,468 ms
225,812 KB |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | AC | 1,791 ms
196,444 KB |
testcase_46 | WA | - |
testcase_47 | AC | 2,301 ms
226,288 KB |
testcase_48 | RE | - |
testcase_49 | RE | - |
testcase_50 | RE | - |
testcase_51 | RE | - |
testcase_52 | RE | - |
testcase_53 | RE | - |
ソースコード
import heapq import collections N = int(input()) A = list(map(int, input().split())) B = list(map(int, input().split())) C = [] for i in range(N): if A[i]>B[i]: A[i],B[i]=B[i],A[i] C.append([A[i],(A[i]+B[i])//2,B[i]]) mi = 10**9 ma = 0 h = [] COL = collections.Counter() for i,a in enumerate(A): mi = min(mi,a) ma = max(ma,a) heapq.heappush(h,(a,i,0)) COL[a]+=1 ans = ma-mi while h: before,i,ii= heapq.heappop(h) COL[before]-=1 if ii==0: heapq.heappush(h,((A[i]+B[i])//2,i,1)) ma = max(ma,(A[i]+B[i])//2) COL[(A[i]+B[i])//2]+=1 if ii==1: ma = max(ma,B[i]) COL[B[i]]+=1 if COL[before]==0 and mi==before: mi=h[0][0] ans = min(ans,ma-mi) print(ans)