結果

問題 No.2408 Lakes and Fish
ユーザー 👑 AngrySadEightAngrySadEight
提出日時 2023-07-08 15:53:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 212 ms / 2,000 ms
コード長 454 bytes
コンパイル時間 973 ms
コンパイル使用メモリ 81,984 KB
実行使用メモリ 97,056 KB
最終ジャッジ日時 2024-11-18 14:57:20
合計ジャッジ時間 4,823 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,836 KB
testcase_01 AC 38 ms
53,052 KB
testcase_02 AC 37 ms
52,936 KB
testcase_03 AC 38 ms
52,868 KB
testcase_04 AC 169 ms
96,140 KB
testcase_05 AC 171 ms
96,356 KB
testcase_06 AC 176 ms
95,436 KB
testcase_07 AC 203 ms
96,544 KB
testcase_08 AC 212 ms
96,860 KB
testcase_09 AC 204 ms
96,596 KB
testcase_10 AC 204 ms
97,056 KB
testcase_11 AC 143 ms
81,348 KB
testcase_12 AC 169 ms
91,812 KB
testcase_13 AC 113 ms
79,568 KB
testcase_14 AC 132 ms
81,712 KB
testcase_15 AC 181 ms
89,336 KB
testcase_16 AC 117 ms
84,196 KB
testcase_17 AC 112 ms
77,436 KB
testcase_18 AC 140 ms
87,592 KB
testcase_19 AC 173 ms
84,216 KB
testcase_20 AC 165 ms
76,556 KB
testcase_21 AC 184 ms
87,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect

INF = 10 ** 17

N, M = map(int, input().split())
L = list(map(int, input().split()))
Li = []
Li.append(-INF)
for x in L:
    Li.append(x)
Li.append(INF)
ans = 0
for i in range(M):
    F, B, W = map(int, input().split())
    idx = bisect.bisect_left(Li, F)
    min_dist = abs(F - Li[idx])
    idx -= 1
    min_dist = min(min_dist, abs(F - Li[idx]))
    if min_dist < W - B:
        ans += W - min_dist
    else:
        ans += B
print(ans)
0