結果

問題 No.871 かえるのうた
ユーザー kit84kit84
提出日時 2019-08-30 23:19:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,004 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 39,500 KB
最終ジャッジ日時 2024-11-22 03:13:54
合計ジャッジ時間 67,585 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
16,128 KB
testcase_01 AC 30 ms
24,024 KB
testcase_02 AC 34 ms
16,000 KB
testcase_03 AC 35 ms
22,272 KB
testcase_04 AC 38 ms
16,000 KB
testcase_05 AC 31 ms
37,736 KB
testcase_06 WA -
testcase_07 AC 30 ms
36,720 KB
testcase_08 AC 656 ms
16,256 KB
testcase_09 AC 1,139 ms
39,500 KB
testcase_10 AC 833 ms
16,000 KB
testcase_11 AC 38 ms
22,864 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 1,327 ms
33,364 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 299 ms
38,576 KB
testcase_18 AC 83 ms
18,388 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 37 ms
16,000 KB
testcase_23 AC 31 ms
16,256 KB
testcase_24 AC 30 ms
16,256 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 31 ms
16,128 KB
testcase_29 AC 190 ms
23,008 KB
testcase_30 TLE -
testcase_31 AC 57 ms
37,944 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 AC 103 ms
19,892 KB
testcase_35 TLE -
testcase_36 AC 253 ms
27,508 KB
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 AC 31 ms
10,752 KB
testcase_42 TLE -
testcase_43 WA -
testcase_44 WA -
testcase_45 TLE -
testcase_46 AC 31 ms
11,008 KB
testcase_47 AC 30 ms
10,880 KB
testcase_48 AC 31 ms
17,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# #debug
def dprint(*ar):
    # print(*ar)
    pass


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

# init
# 0-origin
initX = vX[K-1]
initA = vA[K-1]
L, R = (initX-initA), (initX+initA)

for _ in range(N):
    # for plus
    prevX, prevA = initX, initA
    for i in range(K, N):
        dist = abs(vX[i] - prevX)
        dprint(dist, i, L, R)
        if dist > prevA:
            break
        else:
            prevX = vX[i]
            prevA = max(vA[i], prevA - dist)
            R = max(R, prevX + prevA)
            L = min(L, prevX - prevA)

    # for minus
    prevX, prevA = initX, initA
    for i in range(K-2, -1, -1):
        dist = abs(vX[i] - prevX)
        dprint(dist, i, L, R)
        if dist > prevA:
            break
        else:
            prevX = vX[i]
            prevA = max(vA[i], prevA - dist)
            R = max(R, prevX + prevA)
            L = min(L, prevX - prevA)

res = sum([L<=x<=R for x in vX])
print(res)
0