結果

問題 No.1767 BLUE to RED
ユーザー KazunKazun
提出日時 2021-11-26 22:50:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 263 ms / 2,000 ms
コード長 1,206 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 81,904 KB
実行使用メモリ 140,420 KB
最終ジャッジ日時 2024-06-29 18:20:21
合計ジャッジ時間 5,055 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,824 KB
testcase_01 AC 36 ms
52,952 KB
testcase_02 AC 34 ms
53,264 KB
testcase_03 AC 34 ms
53,312 KB
testcase_04 AC 42 ms
60,440 KB
testcase_05 AC 39 ms
60,860 KB
testcase_06 AC 33 ms
53,804 KB
testcase_07 AC 40 ms
61,228 KB
testcase_08 AC 44 ms
64,800 KB
testcase_09 AC 159 ms
107,524 KB
testcase_10 AC 186 ms
110,496 KB
testcase_11 AC 170 ms
112,320 KB
testcase_12 AC 158 ms
107,276 KB
testcase_13 AC 209 ms
131,440 KB
testcase_14 AC 250 ms
140,156 KB
testcase_15 AC 243 ms
140,420 KB
testcase_16 AC 243 ms
140,048 KB
testcase_17 AC 240 ms
140,284 KB
testcase_18 AC 250 ms
139,924 KB
testcase_19 AC 263 ms
140,324 KB
testcase_20 AC 250 ms
140,056 KB
testcase_21 AC 248 ms
140,136 KB
testcase_22 AC 255 ms
140,168 KB
testcase_23 AC 252 ms
140,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Binary_Search_Small_Count(A,x,equal=False,sort=False):
    """2分探索によって,x未満の要素の個数を調べる.

    A:リスト
    x:調べる要素
    sort:ソートをする必要があるかどうか(Trueで必要)
    equal:Trueのときはx"未満"がx"以下"になる
    """
    if sort: A.sort()

    if len(A)==0 or A[0]>x or ((not equal) and A[0]==x):
        return 0

    L,R=0,len(A)
    while R-L>1:
        C=L+(R-L)//2
        if A[C]<x or (equal and A[C]==x): L=C
        else: R=C

    return L+1
#==================================================
N,M=map(int,input().split())
A=list(map(int,input().split()))
B=list(map(int,input().split()))

inf=float("inf")
M=[[] for _ in range(N+1)]
for i in range(N+1):
    if i==0:
        M[0]=[A[0]]
    elif i==N:
        M[N]=[A[N-1]]
    else:
        M[i]=[A[i-1],A[i]]

for b in B:
    k=Binary_Search_Small_Count(A,b)
    M[k].append(b)

X=0
for k in range(N+1):
    if k==0 or k==N:
        X+=max(M[k])-min(M[k])
        continue

    if len(M[k])==2:
        continue

    M[k].sort()
    alpha=0
    for j in range(len(M[k])-1):
        alpha=max(alpha,M[k][j+1]-M[k][j])

    X+=(M[k][-1]-M[k][0])-alpha

print(X)
0