結果

問題 No.1767 BLUE to RED
ユーザー SidewaysOwlSidewaysOwl
提出日時 2021-11-27 09:44:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 310 ms / 2,000 ms
コード長 724 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 145,172 KB
最終ジャッジ日時 2024-06-30 01:27:18
合計ジャッジ時間 6,081 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,740 KB
testcase_01 AC 36 ms
53,684 KB
testcase_02 AC 34 ms
51,992 KB
testcase_03 AC 38 ms
52,504 KB
testcase_04 AC 36 ms
52,944 KB
testcase_05 AC 36 ms
53,368 KB
testcase_06 AC 34 ms
52,832 KB
testcase_07 AC 40 ms
60,784 KB
testcase_08 AC 42 ms
62,088 KB
testcase_09 AC 203 ms
127,136 KB
testcase_10 AC 232 ms
121,876 KB
testcase_11 AC 218 ms
131,444 KB
testcase_12 AC 211 ms
127,084 KB
testcase_13 AC 257 ms
123,376 KB
testcase_14 AC 291 ms
144,292 KB
testcase_15 AC 298 ms
144,692 KB
testcase_16 AC 297 ms
144,304 KB
testcase_17 AC 290 ms
144,424 KB
testcase_18 AC 286 ms
144,440 KB
testcase_19 AC 286 ms
144,304 KB
testcase_20 AC 282 ms
144,548 KB
testcase_21 AC 310 ms
145,172 KB
testcase_22 AC 283 ms
144,284 KB
testcase_23 AC 285 ms
144,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
a = [-(10**9 + 1)] + list(map(int,input().split())) + [2*10**9 + 1] 
b = list(map(int,input().split()))
ab = []
for i in range(n+2):
    ab.append([a[i],1])
for i in range(m):
    ab.append([b[i],0])
ab.sort()
flg = 1
max_ = 0
sum_ = 0
ans = 0
for i in range(n+m+2):
    idx,color = ab[i]
    if color == 1 and flg == 0:
        max_ = max(ab[i][0] - ab[i-1][0] ,max_)
        sum_ += ab[i][0] - ab[i-1][0]
        ans += sum_ - max_
    elif color == 0 and flg == 1:
        max_ = ab[i][0] - ab[i-1][0]
        sum_ = ab[i][0] - ab[i-1][0]
    elif color == 0 and flg == 0:
        max_ = max(ab[i][0] - ab[i-1][0] ,max_)
        sum_ += ab[i][0] - ab[i-1][0]
    flg = color
    
print(ans)
0