結果

問題 No.1767 BLUE to RED
ユーザー kohei2019kohei2019
提出日時 2023-06-22 22:56:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 292 ms / 2,000 ms
コード長 659 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 150,348 KB
最終ジャッジ日時 2024-06-30 05:05:18
合計ジャッジ時間 6,829 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,196 KB
testcase_01 AC 39 ms
52,428 KB
testcase_02 AC 37 ms
52,004 KB
testcase_03 AC 35 ms
52,804 KB
testcase_04 AC 37 ms
54,188 KB
testcase_05 AC 39 ms
54,396 KB
testcase_06 AC 37 ms
53,524 KB
testcase_07 AC 41 ms
59,384 KB
testcase_08 AC 44 ms
61,292 KB
testcase_09 AC 187 ms
116,804 KB
testcase_10 AC 231 ms
124,724 KB
testcase_11 AC 209 ms
125,448 KB
testcase_12 AC 189 ms
116,616 KB
testcase_13 AC 239 ms
128,508 KB
testcase_14 AC 288 ms
150,220 KB
testcase_15 AC 285 ms
150,104 KB
testcase_16 AC 287 ms
148,872 KB
testcase_17 AC 284 ms
149,004 KB
testcase_18 AC 292 ms
148,620 KB
testcase_19 AC 286 ms
149,948 KB
testcase_20 AC 284 ms
150,348 KB
testcase_21 AC 286 ms
150,004 KB
testcase_22 AC 291 ms
148,876 KB
testcase_23 AC 289 ms
148,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
lsA = list(map(int,input().split()))
lsB = list(map(int,input().split()))
# Aを0,Bを1とする
lsAB = [(-10**10,0)]
for i in range(N):
    lsAB.append((lsA[i],0))
for i in range(M):
    lsAB.append((lsB[i],1))
lsAB.append((10**10,0))
lsAB.sort()
br = -10**10
ans = 0
ii = 0
while ii <= N+M:
    rs = lsAB[ii][0]
    lsBB = [rs]
    ii += 1
    while lsAB[ii][1]==1:
        lsBB.append(lsAB[ii][0])
        ii += 1
    if len(lsBB)<=1:
        continue
    lsBB.append(lsAB[ii][0])
    sm = lsBB[-1]-lsBB[0]
    maxd = 0
    for i in range(len(lsBB)-1):
        maxd = max(maxd,lsBB[i+1]-lsBB[i])
    ans += sm-maxd
print(ans)
0