結果

問題 No.738 平らな農地
ユーザー roiti46roiti46
提出日時 2018-09-28 22:11:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 682 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 91,192 KB
最終ジャッジ日時 2024-10-12 06:22:27
合計ジャッジ時間 23,686 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,632 KB
testcase_01 AC 43 ms
53,760 KB
testcase_02 AC 42 ms
53,760 KB
testcase_03 AC 42 ms
53,632 KB
testcase_04 AC 44 ms
53,760 KB
testcase_05 AC 130 ms
77,168 KB
testcase_06 AC 113 ms
76,672 KB
testcase_07 AC 125 ms
77,508 KB
testcase_08 AC 111 ms
76,600 KB
testcase_09 AC 107 ms
76,468 KB
testcase_10 AC 103 ms
76,280 KB
testcase_11 AC 120 ms
77,008 KB
testcase_12 AC 108 ms
76,416 KB
testcase_13 AC 124 ms
77,220 KB
testcase_14 AC 104 ms
76,176 KB
testcase_15 AC 368 ms
87,808 KB
testcase_16 AC 378 ms
89,984 KB
testcase_17 AC 364 ms
89,344 KB
testcase_18 AC 344 ms
88,040 KB
testcase_19 AC 345 ms
89,600 KB
testcase_20 AC 378 ms
89,984 KB
testcase_21 AC 372 ms
89,472 KB
testcase_22 AC 370 ms
89,600 KB
testcase_23 AC 362 ms
89,656 KB
testcase_24 AC 351 ms
89,728 KB
testcase_25 AC 105 ms
76,416 KB
testcase_26 AC 108 ms
76,340 KB
testcase_27 AC 106 ms
76,240 KB
testcase_28 AC 110 ms
76,404 KB
testcase_29 AC 108 ms
76,020 KB
testcase_30 AC 121 ms
76,384 KB
testcase_31 AC 120 ms
77,208 KB
testcase_32 AC 104 ms
76,348 KB
testcase_33 AC 110 ms
76,636 KB
testcase_34 AC 111 ms
76,400 KB
testcase_35 AC 110 ms
76,180 KB
testcase_36 AC 111 ms
76,404 KB
testcase_37 AC 113 ms
76,448 KB
testcase_38 AC 113 ms
75,960 KB
testcase_39 AC 114 ms
76,220 KB
testcase_40 AC 119 ms
76,552 KB
testcase_41 AC 111 ms
76,396 KB
testcase_42 AC 108 ms
76,500 KB
testcase_43 AC 113 ms
76,568 KB
testcase_44 AC 106 ms
76,352 KB
testcase_45 AC 405 ms
89,728 KB
testcase_46 AC 368 ms
88,192 KB
testcase_47 AC 389 ms
89,728 KB
testcase_48 AC 366 ms
89,728 KB
testcase_49 AC 381 ms
89,344 KB
testcase_50 AC 391 ms
90,240 KB
testcase_51 AC 387 ms
89,600 KB
testcase_52 AC 380 ms
89,852 KB
testcase_53 AC 376 ms
89,472 KB
testcase_54 AC 379 ms
89,984 KB
testcase_55 AC 391 ms
89,820 KB
testcase_56 AC 381 ms
89,856 KB
testcase_57 AC 373 ms
88,064 KB
testcase_58 AC 389 ms
89,472 KB
testcase_59 AC 405 ms
89,728 KB
testcase_60 AC 409 ms
89,856 KB
testcase_61 AC 381 ms
89,728 KB
testcase_62 AC 364 ms
88,064 KB
testcase_63 AC 390 ms
89,856 KB
testcase_64 AC 400 ms
89,896 KB
testcase_65 AC 234 ms
89,660 KB
testcase_66 AC 177 ms
89,472 KB
testcase_67 AC 265 ms
89,300 KB
testcase_68 WA -
testcase_69 WA -
testcase_70 AC 248 ms
90,752 KB
testcase_71 AC 72 ms
82,432 KB
testcase_72 AC 76 ms
86,912 KB
testcase_73 AC 79 ms
88,532 KB
testcase_74 AC 80 ms
88,064 KB
testcase_75 WA -
testcase_76 AC 272 ms
90,624 KB
testcase_77 WA -
testcase_78 WA -
testcase_79 AC 241 ms
90,880 KB
testcase_80 AC 257 ms
91,008 KB
testcase_81 AC 229 ms
90,880 KB
testcase_82 AC 207 ms
91,136 KB
testcase_83 AC 221 ms
90,104 KB
testcase_84 AC 350 ms
90,368 KB
testcase_85 WA -
testcase_86 WA -
testcase_87 AC 369 ms
90,196 KB
testcase_88 AC 357 ms
88,368 KB
testcase_89 AC 42 ms
53,760 KB
testcase_90 AC 42 ms
53,632 KB
testcase_91 AC 43 ms
53,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

N, K = map(int, input().split())
A = list(map(int, input().split()))

ans = 1e17
lo, hi = min(A), max(A)
while lo <= hi:
    l = (2*lo + hi)//3
    h = (lo + 2*hi)//3
    s_l = min_l = sum(abs(A[j] - l) for j in range(K))
    for j in range(K, N):
        s_l = s_l - abs(A[j - K] - l) + abs(A[j] - l)
        min_l = min(min_l, s_l)
    s_h = min_h = sum(abs(A[j] - h) for j in range(K))
    for j in range(K, N):
        s_h = s_h - abs(A[j - K] - h) + abs(A[j] - h)
        min_h = min(min_h, s_h)

    if min_l < min_h:
        hi = h - 1
        ans = min(ans, min_l)
    else:
        lo = l + 1
        ans = min(ans, min_h)
print(ans) 

0