結果

問題 No.343 手抜き工事のプロ
ユーザー rpy3cpprpy3cpp
提出日時 2016-02-12 22:51:07
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 336 ms / 2,000 ms
コード長 732 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 18,816 KB
最終ジャッジ日時 2024-09-22 04:46:27
合計ジャッジ時間 3,085 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

def read_data():
    N = int(input())
    L = int(input())
    Xs = [int(input()) for i in range(N - 1)]
    return N, L, Xs

def solve(N, L, Xs):
    Xs.reverse()
    Xs.append(0)
    cum = 0
    n = 0
    centers = []
    for x in Xs:
        cum += x
        n += 1
        center = (cum / n) + L/2
        centers.append(center)
    bonds = 0
    for i in range(N-1):
        center = centers[i]
        x_top = Xs[i]
        x_bottom = Xs[i + 1]
        left = max(x_top, x_bottom)
        right = min(x_top + L, x_bottom + L)
        if left >= right:
            return -1
        if left < center < right:
            pass
        else:
            bonds += 1
    return bonds

N, L, Xs = read_data()
print(solve(N, L, Xs))
0