結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,272 KB
testcase_01 AC 43 ms
53,760 KB
testcase_02 AC 44 ms
54,016 KB
testcase_03 AC 40 ms
54,272 KB
testcase_04 AC 40 ms
54,272 KB
testcase_05 AC 115 ms
77,084 KB
testcase_06 AC 107 ms
76,780 KB
testcase_07 AC 119 ms
77,212 KB
testcase_08 AC 101 ms
76,800 KB
testcase_09 AC 97 ms
76,172 KB
testcase_10 AC 94 ms
76,524 KB
testcase_11 AC 109 ms
77,136 KB
testcase_12 AC 98 ms
75,980 KB
testcase_13 AC 112 ms
76,404 KB
testcase_14 AC 97 ms
76,180 KB
testcase_15 AC 351 ms
87,808 KB
testcase_16 AC 357 ms
89,600 KB
testcase_17 AC 344 ms
89,344 KB
testcase_18 AC 331 ms
87,808 KB
testcase_19 AC 328 ms
89,472 KB
testcase_20 AC 360 ms
89,600 KB
testcase_21 AC 363 ms
89,840 KB
testcase_22 AC 354 ms
89,472 KB
testcase_23 AC 356 ms
89,728 KB
testcase_24 AC 332 ms
89,472 KB
testcase_25 AC 97 ms
76,480 KB
testcase_26 AC 101 ms
76,160 KB
testcase_27 AC 105 ms
76,232 KB
testcase_28 AC 99 ms
76,484 KB
testcase_29 AC 102 ms
76,388 KB
testcase_30 AC 110 ms
76,076 KB
testcase_31 AC 112 ms
76,800 KB
testcase_32 AC 92 ms
76,284 KB
testcase_33 AC 104 ms
76,440 KB
testcase_34 AC 104 ms
76,140 KB
testcase_35 AC 103 ms
76,324 KB
testcase_36 AC 98 ms
76,256 KB
testcase_37 AC 105 ms
76,488 KB
testcase_38 AC 106 ms
76,068 KB
testcase_39 AC 106 ms
76,244 KB
testcase_40 AC 111 ms
76,472 KB
testcase_41 AC 105 ms
76,116 KB
testcase_42 AC 103 ms
76,416 KB
testcase_43 AC 104 ms
76,068 KB
testcase_44 AC 99 ms
76,780 KB
testcase_45 AC 388 ms
89,728 KB
testcase_46 AC 357 ms
88,192 KB
testcase_47 AC 388 ms
89,984 KB
testcase_48 AC 361 ms
89,728 KB
testcase_49 AC 373 ms
89,728 KB
testcase_50 AC 381 ms
89,648 KB
testcase_51 AC 379 ms
90,052 KB
testcase_52 AC 373 ms
89,600 KB
testcase_53 AC 361 ms
89,600 KB
testcase_54 AC 364 ms
89,856 KB
testcase_55 AC 379 ms
89,984 KB
testcase_56 AC 369 ms
89,856 KB
testcase_57 AC 364 ms
88,064 KB
testcase_58 AC 367 ms
89,856 KB
testcase_59 AC 391 ms
89,740 KB
testcase_60 AC 395 ms
90,240 KB
testcase_61 AC 366 ms
89,984 KB
testcase_62 AC 353 ms
88,132 KB
testcase_63 AC 367 ms
89,728 KB
testcase_64 AC 378 ms
90,240 KB
testcase_65 AC 202 ms
89,600 KB
testcase_66 AC 169 ms
89,600 KB
testcase_67 AC 264 ms
89,040 KB
testcase_68 AC 265 ms
90,624 KB
testcase_69 WA -
testcase_70 AC 229 ms
90,880 KB
testcase_71 AC 173 ms
89,392 KB
testcase_72 AC 170 ms
89,352 KB
testcase_73 AC 221 ms
90,496 KB
testcase_74 AC 193 ms
90,880 KB
testcase_75 WA -
testcase_76 AC 256 ms
90,496 KB
testcase_77 WA -
testcase_78 WA -
testcase_79 AC 234 ms
90,752 KB
testcase_80 AC 247 ms
90,904 KB
testcase_81 AC 219 ms
90,880 KB
testcase_82 AC 196 ms
90,624 KB
testcase_83 AC 210 ms
89,916 KB
testcase_84 AC 330 ms
90,240 KB
testcase_85 WA -
testcase_86 WA -
testcase_87 AC 361 ms
89,836 KB
testcase_88 AC 337 ms
88,192 KB
testcase_89 AC 40 ms
53,888 KB
testcase_90 AC 42 ms
53,888 KB
testcase_91 AC 42 ms
54,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

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

ans = 1e15
lo, hi = 1, 10**9
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