結果

問題 No.1767 BLUE to RED
ユーザー SidewaysOwlSidewaysOwl
提出日時 2021-11-27 09:30:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 742 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 145,452 KB
最終ジャッジ日時 2024-06-30 01:20:08
合計ジャッジ時間 7,234 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 37 ms
52,352 KB
testcase_04 WA -
testcase_05 AC 42 ms
53,248 KB
testcase_06 AC 38 ms
52,352 KB
testcase_07 AC 45 ms
59,776 KB
testcase_08 AC 46 ms
61,184 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 212 ms
127,252 KB
testcase_13 AC 257 ms
123,752 KB
testcase_14 AC 305 ms
144,564 KB
testcase_15 WA -
testcase_16 AC 307 ms
144,544 KB
testcase_17 AC 304 ms
144,408 KB
testcase_18 AC 306 ms
144,516 KB
testcase_19 WA -
testcase_20 AC 304 ms
144,300 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 306 ms
144,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
a = [-(10**9 + 1)] + list(map(int,input().split())) + [10**9 + 1] 
b = list(map(int,input().split()))
d = {}
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
idx_blue = 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